Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 222 for Projekts (0.28 sec)

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

                            "The requested required projects " + requiredSelectors + " do not exist.", request.getPom());
                } else {
                    String optionalSelectors = unresolvedSelectors.stream()
                            .map(ProjectActivation.ProjectActivationSettings::selector)
                            .collect(Collectors.joining(", "));
                    LOGGER.info("The requested optional projects {} do not exist.", optionalSelectors);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 11 16:38:19 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/DuplicateProjectException.java

         * @param collisions The POM files of the projects that collided, indexed by their g:a:v, may be {@code null}.
         */
        public DuplicateProjectException(String message, Map<String, List<File>> collisions) {
            super(message, (File) null);
    
            this.collisions = (collisions != null) ? collisions : new LinkedHashMap<>();
        }
    
        /**
         * Gets the POM files of the projects that collided.
         *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/BuildListCalculator.java

            for (TaskSegment taskSegment : taskSegments) {
                List<MavenProject> projects;
    
                if (taskSegment.isAggregating()) {
                    projects = Collections.singletonList(rootProject);
                } else {
                    projects = session.getProjects();
                }
                for (MavenProject project : projects) {
                    ClassLoader tccl = Thread.currentThread().getContextClassLoader();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlan.java

        private final Map<MavenProject, List<MavenProject>> projects;
        private final Map<String, String> aliases = new HashMap<>();
        private volatile Set<String> duplicateIds;
        private volatile List<BuildStep> sortedNodes;
    
        BuildPlan() {
            this.projects = null;
        }
    
        public BuildPlan(Map<MavenProject, List<MavenProject>> projects) {
            this.projects = projects;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Mar 28 12:11:25 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  5. util/gradle_integration_tests.sh

    #!/bin/bash
    
    set -eu
    
    ./mvnw clean install --projects '!guava-testlib,!guava-tests,!guava-bom,!guava-gwt' -Dmaven.test.skip=true -Dmaven.javadoc.skip=true
    ./mvnw clean install --projects '!guava-testlib,!guava-tests,!guava-bom' -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -f android
    
    # We run this separately so that its change to the default toolchain doesn't affect anything else.
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Jan 02 19:24:12 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/project/ProjectSorter.java

        /**
         * Sort a list of projects.
         * <ul>
         * <li>collect all the vertices for the projects that we want to build.</li>
         * <li>iterate through the deps of each project and if that dep is within
         * the set of projects we want to build then add an edge, otherwise throw
         * the edge away because that dependency is not within the set of projects
         * we are trying to build. we assume a closed set.</li>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. impl/maven-core/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

                    .setUserProperties(new Properties());
    
            initRepoSession(request, configuration);
    
            List<MavenProject> projects = new ArrayList<>();
    
            if (pom != null) {
                MavenProject project = projectBuilder.build(pom, configuration).getProject();
    
                projects.add(project);
                if (includeModules) {
                    for (String module : project.getModules()) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 20:01:00 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  8. samples/guide/build.gradle.kts

    plugins {
      kotlin("jvm")
      id("com.google.devtools.ksp")
    }
    
    dependencies {
      "friendsImplementation"(projects.okhttp)
      implementation(projects.mockwebserver)
      implementation(projects.okhttpTestingSupport)
      implementation(projects.okhttpTls)
      implementation(libs.animalsniffer.annotations)
      implementation(libs.squareup.moshi)
      implementation(libs.squareup.okio.fakefilesystem)
      ksp(libs.squareup.moshi.compiler)
    }
    
    java {
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat May 17 05:15:32 UTC 2025
    - 554 bytes
    - Viewed (0)
  9. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/package-info.java

     * upgrade Maven projects to be compatible with Maven 4. The tool is organized around
     * a goal-based architecture with pluggable upgrade strategies.</p>
     *
     * <h2>Architecture Overview</h2>
     *
     * <h3>Goals</h3>
     * <ul>
     *   <li>{@link org.apache.maven.cling.invoker.mvnup.goals.Check} - Analyzes projects and reports needed upgrades</li>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  10. mockwebserver-deprecated/build.gradle.kts

      id("binary-compatibility-validator")
    }
    
    project.applyJavaModules("okhttp3.mockwebserver")
    
    dependencies {
      "friendsApi"(projects.okhttp)
      api(projects.mockwebserver3)
      api(libs.junit)
    
      testImplementation(projects.okhttpTestingSupport)
      testImplementation(projects.okhttpTls)
      testImplementation(libs.kotlin.test.common)
      testImplementation(libs.kotlin.test.junit)
    }
    
    mavenPublishing {
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:22:22 UTC 2025
    - 643 bytes
    - Viewed (0)
Back to top