Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Hevery (0.26 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         *
         * @param project {@link Project} or {@code null}.
         * @return the effective properties, never {@code null}
         */
        @Nonnull
        Map<String, String> getEffectiveProperties(@Nullable Project project);
    
        /**
         * Returns the current maven version
         * @return the maven version, never {@code null}
         */
        @Nonnull
        Version getMavenVersion();
    
        int getDegreeOfConcurrency();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

                // assume these are system errors and further build is meaningless
                buildContext.getReactorBuildStatus().halt();
            } else if (MavenExecutionRequest.REACTOR_FAIL_NEVER.equals(rootSession.getReactorFailureBehavior())) {
                // continue the build
            } else if (MavenExecutionRequest.REACTOR_FAIL_AT_END.equals(rootSession.getReactorFailureBehavior())) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.2K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

             * DefaultRepositoryLayout does not correctly describe the layout of a local repository which unlike a remote
             * repository never uses timestamps in the filename of a snapshot artifact. The discrepancy gets notable when a
             * remotely resolved snapshot artifact gets passed into pathOf(). So producing a proper local artifact path
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

         * configured directly by the user on his discretion, e.g. via the {@code -Dkey=value} parameter on the command
         * line.
         *
         * @return The user properties, never {@code null}.
         */
        public Properties getUserProperties() {
            return request.getUserProperties();
        }
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsBuilder.java

                        .build();
                Repository centralWithNoUpdate = central.withReleases(
                        RepositoryPolicy.newBuilder().updatePolicy("never").build());
                effective = Settings.newBuilder(effective)
                        .repositories(List.of(central))
                        .pluginRepositories(List.of(centralWithNoUpdate))
                        .build();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 12K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

         * @param artifacts The artifacts to add to the realm, may be {@code null}. Unresolved artifacts (i.e. with a
         *            missing file) will automatically be excluded from the realm.
         * @return The created class realm, never {@code null}.
         */
        private ClassRealm createRealm(
                String baseRealmId,
                RealmType type,
                ClassLoader parent,
                List<String> parentImports,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:53:42 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                                    // MavenMetadataSource.createArtifacts(..) step, BUT that would
                                    // require resolving the POM from the repository very early on in
                                    // the build.
                                    continue;
                                }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 36.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

        }
    
        /**
         * Get all profiles that are detected in the projects, any parent of the projects, or the settings.
         * @param session The Maven session
         * @return A {@link Set} of profile identifiers, never {@code null}.
         */
        private Set<String> getAllProfiles(MavenSession session) {
            final Map<String, Model> superPomModels = new HashMap<>();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

     * the paths specified in a {@code --patch-module} Java option is effective only for a specified module.
     * This type is created by calls to {@link #patchModule(String)} and a new instance must be created for
     * every module to patch.</p>
     *
     * <p>Path types are often exclusive. For example, a dependency should not be both on the Java class-path
     * and on the Java module-path.</p>
     *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  10. maven-core/pom.xml

                  <!-- was only a workaround for Plexus Container, hopefully never used by anyone else -->
                  <exclude>org.apache.maven.plugin.DefaultBuildPluginManager#setMojoExecutionListeners(java.util.List)</exclude>
                  <!-- could have never been used due to usage of non-export class (CoreExportsProvider) -->
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
Back to top