Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for inactiveProfile (0.11 sec)

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

            Profile inactiveProfile = originalModel.getProfiles().stream()
                    .filter(profile -> profile.getId().equals("inactiveProfile"))
                    .findFirst()
                    .orElse(null);
            assertNotNull(inactiveProfile, "Unable to find the inactiveProfile");
    
            assertFalse(
                    isActiveProfile(pom.getMavenProject(), inactiveProfile),
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 94.8K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            }
    
            return this;
        }
    
        @Override
        public MavenExecutionRequest setInactiveProfiles(List<String> inactiveProfiles) {
            if (inactiveProfiles != null) {
                this.profileActivation.overwriteInactiveProfiles(inactiveProfiles);
            }
    
            return this;
        }
    
        @Override
        public ProjectActivation getProjectActivation() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 32.1K bytes
    - Viewed (0)
Back to top