Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getEffectiveActiveProfiles (0.08 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProject.java

                    .map(org.apache.maven.model.Profile::getDelegate)
                    .toList();
        }
    
        @Override
        @Nonnull
        public List<Profile> getEffectiveActiveProfiles() {
            return Stream.iterate(this.project, Objects::nonNull, MavenProject::getParent)
                    .flatMap(project -> project.getActiveProfiles().stream())
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Mar 24 22:23:23 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

         * limited to dependencies, plugins, properties, and build resources.
         *
         * @return a non-null, possibly empty list of active profiles for this project
         * @see Profile
         * @see #getEffectiveActiveProfiles()
         */
        @Nonnull
        List<Profile> getDeclaredActiveProfiles();
    
        /**
         * Returns all active profiles for 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)
Back to top