Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for activeProfile (0.26 sec)

  1. apache-maven/src/assembly/maven/conf/settings.xml

          </properties>
        </profile>
        -->
      </profiles>
    
      <!-- activeProfiles
       | List of profiles that are active for all builds.
       |
      <activeProfiles>
        <activeProfile>alwaysActiveProfile</activeProfile>
        <activeProfile>anotherAlwaysActiveProfile</activeProfile>
      </activeProfiles>
      -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:06:01 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            return interactiveMode;
        }
    
        @Override
        public MavenExecutionRequest setActiveProfiles(List<String> activeProfiles) {
            if (activeProfiles != null) {
                this.profileActivation.overwriteActiveProfiles(activeProfiles);
            }
    
            return this;
        }
    
        @Override
        public MavenExecutionRequest setInactiveProfiles(List<String> inactiveProfiles) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 31K bytes
    - Viewed (0)
  3. maven-compat/src/main/mdo/profiles.mdo

              ]]></description>
              <association>
                <type>Profile</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
            <field>
              <name>activeProfiles</name>
              <version>1.0.0</version>
              <description><![CDATA[
                List of manually-activated build profiles, specified in the order in which
                they should be applied.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 21:08:35 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top