- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for activeProfileIds (0.06 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java
this.profiles = profiles; return this; } public ModelBuilderRequestBuilder activeProfileIds(List<String> activeProfileIds) { this.activeProfileIds = activeProfileIds; return this; } public ModelBuilderRequestBuilder inactiveProfileIds(List<String> inactiveProfileIds) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 10 07:30:49 UTC 2025 - 16.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java
@Override public List<String> getActiveProfileIds() { return activeProfileIds; } @Override public void setActiveProfileIds(List<String> activeProfileIds) { if (activeProfileIds != null) { this.activeProfileIds = new ArrayList<>(activeProfileIds); } else { this.activeProfileIds.clear(); } } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 9.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java
import static java.util.Objects.requireNonNull; /** * Request used to build a {@link org.apache.maven.api.Project} using * the {@link ProjectBuilder} service. * * TODO: add validationLevel, activeProfileIds, inactiveProfileIds, resolveDependencies * * @since 4.0.0 */ @Experimental @Immutable public interface ProjectBuilderRequest extends RepositoryAwareRequest { /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 10 07:30:49 UTC 2025 - 11.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java
// Profiles /** * Set any active profiles that the {@link ProjectBuilder} should consider while constructing * a {@link MavenProject}. */ void setActiveProfileIds(List<String> activeProfileIds); List<String> getActiveProfileIds(); void setInactiveProfileIds(List<String> inactiveProfileIds); List<String> getInactiveProfileIds(); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 7.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java
.map(org.apache.maven.model.Profile::getDelegate) .toList() : null); modelBuildingRequest.activeProfileIds(request.getActiveProfileIds()); modelBuildingRequest.inactiveProfileIds(request.getInactiveProfileIds()); modelBuildingRequest.systemProperties(toMap(request.getSystemProperties()));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 51.8K bytes - Viewed (0)