Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for remove (0.15 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            if (injectedProfileIds != null) {
                this.injectedProfileIds.put(source, new ArrayList<>(injectedProfileIds));
            } else {
                this.injectedProfileIds.remove(source);
            }
        }
    
        /**
         * Gets the identifiers of all profiles that contributed to this project's effective model. This includes active
    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)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                if (!("pom".equals(dependency.getType()) && "import".equals(dependency.getScope()))
                        || "bom".equals(dependency.getType())) {
                    continue;
                }
    
                it.remove();
    
                DependencyManagement importMgmt = loadDependencyManagement(model, request, problems, dependency, importIds);
    
                if (importMgmt != null) {
                    if (importMgmts == null) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(1, ((List<?>) pom.getValue("repositories")).size());
            assertEquals("project-remote-repo", pom.getValue("repositories[1]/id"));
            assertEquals("https://project.url/remote", pom.getValue("repositories[1]/url"));
            assertEquals("repo", pom.getValue("repositories[1]/name"));
    
            assertEquals("test", pom.getValue("build/defaultGoal"));
    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)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    if (parent == null) {
                        //
                        // At this point the DefaultModelBuildingListener has fired and it populates the
                        // remote repositories with those found in the pom.xml, along with the existing externally
                        // defined repositories.
                        //
    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