- Sort Score
- Result 10 results
- Languages All
Results 11 - 15 of 15 for activeProfiles (0.16 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
* <ul> * <li>Command line activation using the -P flag</li> * <li>Maven settings activation in settings.xml via <activeProfiles></li> * <li>Automatic activation via <activation> conditions</li> * <li>The default active profile (marked with <activeByDefault>true</activeByDefault>)</li> * </ul> * <p>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 07 13:11:07 UTC 2025 - 15.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenSession.java
.map(Profile::getDelegate) .map(SettingsUtilsV4::convertToSettingsProfile) .collect(Collectors.toList())) .activeProfiles(request.getActiveProfiles()) .pluginGroups(request.getPluginGroups()) .build()); } @Deprecated public List<MavenProject> getSortedProjects() {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 16.7K bytes - Viewed (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
<association> <type>Profile</type> <multiplicity>*</multiplicity> </association> </field> <field xdoc.separator="blank"> <name>activeProfiles</name> <version>1.0.0+</version> <description> List of manually-activated build profiles, specified in the order in which they should be applied. </description>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 33.8K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java
Profile activeProfile = originalModel.getProfiles().stream() .filter(profile -> profile.getId().equals("activeProfile")) .findFirst() .orElse(null); assertNotNull(activeProfile, "Unable to find the activeProfile"); assertTrue( isActiveProfile(pom.getMavenProject(), activeProfile),
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 94.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
// profile injection for (Profile activeProfile : activePomProfiles) { profileInjector.injectProfile(tmpModel, activeProfile, request, problems); } if (currentData == resultData) { for (Profile activeProfile : activeExternalProfiles) { profileInjector.injectProfile(tmpModel, activeProfile, request, problems); } }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Mar 30 23:08:08 UTC 2025 - 55.3K bytes - Viewed (0)