- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getActiveProfiles (0.06 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
problems.setSource("(external profiles)"); List<Profile> activeExternalProfiles = profileSelector.getActiveProfiles(request.getProfiles(), profileActivationContext, problems); result.setActiveExternalProfiles(activeExternalProfiles); if (!activeExternalProfiles.isEmpty()) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Mar 30 23:08:08 UTC 2025 - 55.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java
setPluginArtifactRepositories(Collections.unmodifiableList(project.getPluginArtifactRepositories())); } if (project.getActiveProfiles() != null) { setActiveProfiles((Collections.unmodifiableList(project.getActiveProfiles()))); } if (project.getAttachedArtifacts() != null) { // clone properties modifiable by plugins in a forked lifecycle
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Aug 29 12:47:20 UTC 2025 - 67K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java
} private boolean isActiveProfile(MavenProject project, Profile activeProfile) { return project.getActiveProfiles().stream().anyMatch(p -> p.getId().equals(activeProfile.getId())); } @Test void testBuildPluginInterpolation() throws Exception {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 94.8K bytes - Viewed (0)