Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for activeProfile (0.29 sec)

  1. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/sharedResources/maven_home/m2_home/conf/settings.xml

                <junit-version>4.13</junit-version>
                <compiler-version>3.7.0</compiler-version>
              </properties>
            </profile>
        </profiles>
        <activeProfiles>
            <activeProfile>testprofile</activeProfile>
        </activeProfiles>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 366 bytes
    - Viewed (0)
  2. maven-core/src/test/resources-settings/settings-no-pom/settings.xml

          <id>local-profile</id>
          <properties>
            <local-profile-prop>local-profile-prop-value</local-profile-prop>
          </properties>
        </profile>
      </profiles>
    
      <activeProfiles>
        <activeProfile>local-profile</activeProfile>
      </activeProfiles>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:50:27 UTC 2020
    - 565 bytes
    - Viewed (0)
  3. maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/settings-template.xml

              <snapshots>
                <enabled>false</enabled>
              </snapshots>
            </pluginRepository>
          </pluginRepositories>
        </profile>
      </profiles>
      <activeProfiles>
        <activeProfile>maven-core-it-repo</activeProfile>
      </activeProfiles>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 29 20:00:15 UTC 2009
    - 1.7K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-settings/repositories/settings.xml

                <checksumPolicy>ignore</checksumPolicy>
              </snapshots>
            </pluginRepository>
          </pluginRepositories>
        </profile>
      </profiles>
      <activeProfiles>
        <activeProfile>maven-core-it-repo</activeProfile>
      </activeProfiles>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 21 23:11:40 UTC 2009
    - 1.7K bytes
    - Viewed (0)
  5. 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)
  6. 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),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/plugin-interpolation-build/pom.xml

                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    
      <profiles>
        <profile>
          <id>activeProfile</id>
          <properties>
            <prop-active>||${project.basedir}||</prop-active>
          </properties>
          <build>
            <plugins>
              <plugin>
                <artifactId>plugin-all-profiles</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 12 10:26:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/plugin-interpolation-reporting/pom.xml

                </configuration>
              </reportSet>
            </reportSets>
          </plugin>
        </plugins>
      </reporting>
    
      <profiles>
        <profile>
          <id>activeProfile</id>
          <properties>
            <prop-active>||${project.basedir}||</prop-active>
          </properties>
          <reporting>
            <plugins>
              <plugin>
                <artifactId>plugin-all-profiles</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 12 10:26:40 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            // profile injection
            for (Profile activeProfile : activePomProfiles) {
                profileInjector.injectProfile(inputModel, activeProfile, request, problems);
            }
    
            modelValidator.validateExternalProfiles(activeExternalProfiles, inputModel, request, problems);
            for (Profile activeProfile : activeExternalProfiles) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilderResult.java

        public DefaultModelBuilderResult setActivePomProfiles(String modelId, List<Profile> activeProfiles) {
            // Intentionally notNull because Super POM may not contain a modelId
            Objects.requireNonNull(modelId, "modelId cannot be null");
    
            if (activeProfiles != null) {
                this.activePomProfiles.put(modelId, new ArrayList<>(activeProfiles));
            } else {
                this.activePomProfiles.remove(modelId);
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top