- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getEffectiveProfiles (0.06 sec)
-
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProject.java
} @Override @Nonnull public List<Profile> getDeclaredProfiles() { return getModel().getProfiles(); } @Override @Nonnull public List<Profile> getEffectiveProfiles() { return Stream.iterate(this.project, Objects::nonNull, MavenProject::getParent) .flatMap(project -> project.getModel().getDelegate().getProfiles().stream()) .toList(); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Mar 24 22:23:23 UTC 2025 - 8.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
* and does not include profiles from parent projects. * * @return a non-null, possibly empty list of profiles defined in this project * @see Profile * @see #getEffectiveProfiles() */ @Nonnull List<Profile> getDeclaredProfiles(); /** * Returns all profiles defined in this project and all of its parent projects. * <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)