Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for its (0.17 sec)

  1. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(
                    "org.apache.maven.its", pom.getValue("dependencyManagement/dependencies[1]/exclusions[1]/groupId"));
            assertEquals(
                    "excluded-managed-dep", pom.getValue("dependencyManagement/dependencies[1]/exclusions[1]/artifactId"));
    
            assertEquals(1, ((List<?>) pom.getValue("dependencies")).size());
            assertEquals("org.apache.maven.its", pom.getValue("dependencies[1]/groupId"));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            }
        }
    
        /**
         * Gets the identifiers of all profiles that contributed to this project's effective model. This includes active
         * profiles from the project's POM and all its parent POMs as well as from external sources like the
         * {@code settings.xml}. The profile identifiers are grouped by the identifier of their source, e.g.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    project.setParentArtifact(repositorySystem.createProjectArtifact(
                            parentGroupId, parentModel.getArtifactId(), parentVersion));
    
                    // org.apache.maven.its.mng4834:parent:0.1
                    String parentModelId = result.getModelIds().get(1);
                    Path parentPomFile =
                            result.getRawModel(parentModelId).map(Model::getPomFile).orElse(null);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
Back to top