Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for true (0.3 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

                        NoPluginFoundForPrefixException, LifecycleNotFoundException, PluginVersionResolutionException {
            return calculateExecutionPlan(session, project, tasks, true);
        }
    
        private void setupMojoExecutions(MavenSession session, MavenProject project, List<MojoExecution> mojoExecutions)
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 26.3K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionRangeResolver.java

                MetadataRequest metadataRequest = new MetadataRequest(metadata, repository, request.getRequestContext());
                metadataRequest.setDeleteLocalCopyIfMissing(true);
                metadataRequest.setTrace(trace);
                metadataRequests.add(metadataRequest);
            }
    
            List<MetadataResult> metadataResults = metadataResolver.resolveMetadata(session, metadataRequests);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 10K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                addPathElement(outputModules.getPathType(), main);
            } else {
                outputModules = PathModularization.NONE;
            }
            if (test != null) {
                boolean addToClasspath = true;
                PathModularization testModules = cache.getModuleInfo(test);
                boolean isModuleHierarchy = outputModules.isModuleHierarchy() || testModules.isModuleHierarchy();
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

         * User property for reverse dependency tree. If enabled, Maven will record ".tracking" directory into local
         * repository with "reverse dependency tree", essentially explaining WHY given artifact is present in local
         * repository.
         * Default: {@code false}, will not record anything.
         *
         * @since 3.9.0
         */
        private static final String MAVEN_REPO_LOCAL_RECORD_REVERSE_TREE = "maven.repo.local.recordReverseTree";
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

                            artifact.setDependencyTrail(resolved.getDependencyTrail());
                            artifact.setResolvedVersion(resolved.getVersion());
                            artifact.setResolved(true);
                        }
                    }
                }
            } finally {
                Thread.currentThread().setContextClassLoader(tccl);
            }
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  6. apache-maven/pom.xml

        </dependency>
      </dependencies>
    
      <pluginRepositories>
        <pluginRepository>
          <releases>
            <enabled>false</enabled>
          </releases>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
          <id>apache.snapshots</id>
          <url>https://repository.apache.org/snapshots/</url>
        </pluginRepository>
      </pluginRepositories>
    
      <build>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver.java

            try {
                DefaultRepositorySystemSession pluginSession = new DefaultRepositorySystemSession(session);
                pluginSession.setArtifactDescriptorPolicy(new SimpleArtifactDescriptorPolicy(true, false));
    
                ArtifactDescriptorRequest request =
                        new ArtifactDescriptorRequest(pluginArtifact, repositories, REPOSITORY_CONTEXT);
                request.setTrace(trace);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 10K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        /**
         * Gets the root directory of the top project, which is the parent directory containing the {@code .mvn}
         * directory or a {@code pom.xml} file with the {@code root="true"} attribute.
         * If there's no such directory, an {@code IllegalStateException} will be thrown.
         *
         * @throws IllegalStateException if the root directory could not be found
         * @see #getTopDirectory()
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Dec 20 13:03:57 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                                            + repository.getUrl() + ")");
                        }
                    } else if (request.isForceUpdate()) {
                        update = true;
                    } else if (localCopyLastModified != null && !policy.checkOutOfDate(localCopyLastModified)) {
                        update = false;
    
                        if (getLogger().isDebugEnabled()) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                addPathElement(outputModules.getPathType(), main);
            } else {
                outputModules = PathModularization.NONE;
            }
            if (test != null) {
                boolean addToClasspath = true;
                PathModularization testModules = cache.getModuleInfo(test);
                boolean isModuleHierarchy = outputModules.isModuleHierarchy() || testModules.isModuleHierarchy();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 14.2K bytes
    - Viewed (0)
Back to top