- Sort Score
- Num 10 results
- Language All
Results 11 - 15 of 15 for activeProfiles (0.05 seconds)
-
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() {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 16.7K bytes - Click Count (0) -
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>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Nov 07 13:11:07 GMT 2025 - 15.3K bytes - Click Count (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>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun May 18 09:15:56 GMT 2025 - 33.8K bytes - Click Count (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),
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 94.8K bytes - Click Count (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); } }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Mar 30 23:08:08 GMT 2025 - 55.3K bytes - Click Count (0)