Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for 350 (0.01 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/graph/DefaultProjectDependencyGraph.java

         *
         * @param allProjects All collected projects.
         * @param projects    The projects to create the dependency graph with.
         * @throws DuplicateProjectException
         * @throws CycleDetectedException
         * @since 3.5.0
         * @deprecated Use {@link #DefaultProjectDependencyGraph(Collection, Collection)} instead.
         */
        @Deprecated
        public DefaultProjectDependencyGraph(List<MavenProject> allProjects, Collection<MavenProject> projects)
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/site/apt/index.apt.vm

       * <<<.mvn/maven.config>>> containing Maven command-line parameter,
    
       * <<<.mvn/extensions.xml>>> containing {{{./core-extensions.html}a list of extensions}},
    
     * since 3.5.0, output is colorized by default, with color disabled in batch mode: see
       {{{/shared/maven-shared-utils/apidocs/org/apache/maven/shared/utils/logging/package-summary.html}styled message API}}
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. doap_Maven.rdf

    .tar.gz Apache Maven 3.5.0 2017-04-07 3.5.0 http://archive.apache.org/dist/maven/maven-3/3.5.0/binaries/apache-maven-3.5.0-bin.zip http://archive.apache.org/dist/maven/maven-3/3.5.0/binaries/apache-maven-3.5.0-bin.tar.gz http://archive.apache.org/dist/maven/maven-3/3.5.0/source/apache-maven-3.5.0-src.zip http://archive.apache.org/dist/maven/maven-3/3.5.0/source/apache-maven-3.5.0-src.tar.gz Apache Maven 3.3.9 2015-11-14 3.3.9 http://archive.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.zip...
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Oct 22 13:53:03 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java

     *
     * @since 3.0-alpha
     */
    public interface ProjectDependencyGraph {
    
        /**
         * Gets all collected projects.
         *
         * @return All collected projects.
         *
         * @since 3.5.0
         */
        List<MavenProject> getAllProjects();
    
        /**
         * Gets all projects in their intended build order, i.e. after topologically sorting the projects according to their
         * interdependencies.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. apache-maven/pom.xml

              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>exec-maven-plugin</artifactId>
            <version>3.5.0</version>
            <executions>
              <execution>
                <id>render-configuration-page</id>
                <goals>
                  <goal>java</goal>
                </goals>
                <phase>verify</phase>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 13:41:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java

            }
            this.sortedProjects = projectDependencyGraph.getSortedProjects().stream()
                    .filter(this.whiteList::containsKey)
                    .toList();
        }
    
        /**
         * @since 3.5.0
         */
        @Override
        public List<MavenProject> getAllProjects() {
            return this.projectDependencyGraph.getAllProjects();
        }
    
        @Override
        public List<MavenProject> getSortedProjects() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/DefaultModelResolverTest.java

    import static org.junit.jupiter.api.Assertions.assertThrows;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Test cases for the default {@code ModelResolver} implementation.
     *
     * @since 3.5.0
     */
    final class DefaultModelResolverTest extends AbstractRepositoryTestCase {
    
        /**
         * Creates a new {@code DefaultModelResolverTest} instance.
         */
        public DefaultModelResolverTest() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. compat/maven-embedder/src/site/apt/logging.apt

    
    * Logging Implementation
    
     Maven 3.1.0 ships bundled with {{{https://www.slf4j.org/api/org/slf4j/simple/SimpleLogger.html}SLF4J simple logger}} and since 3.5.0 {{{../maven-slf4j-provider/}Maven-customized <<<maven-slf4j-provider>>>}},
     but is ready to use other logging implementations: SLF4J is responsible for loading the implementation, referred to as
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java

         *
         * @return The source of the requested POM, never {@code null}.
         *
         * @throws UnresolvableModelException If the POM could not be resolved from any configured repository.
         * @since 3.5.0
         *
         * @see Dependency#clone()
         */
        ModelSource resolveModel(org.apache.maven.model.Dependency dependency) throws UnresolvableModelException;
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. go.mod

    	github.com/lestrrat-go/jwx v1.2.30
    	github.com/mattn/go-isatty v0.0.20
    	github.com/miekg/dns v1.1.62
    	github.com/mitchellh/copystructure v1.2.0
    	github.com/moby/buildkit v0.16.0
    	github.com/onsi/gomega v1.35.0
    	github.com/openshift/api v0.0.0-20241024191314-684b2b1679ba
    	github.com/pires/go-proxyproto v0.8.0
    	github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
    	github.com/prometheus/client_golang v1.20.5
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Nov 06 06:23:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top