Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for profile (0.19 sec)

  1. maven-core/src/test/resources-project-builder/profile-default-deactivation/pom.xml

            </plugins>
          </build>
        </profile>
        <profile>
          <id>profile4</id>
          <build>
            <plugins>
              <plugin>
                <groupId>org.apache.maven.its.plugins</groupId>
                <artifactId>maven-it-plugin-touch</artifactId>
                <version>2.1</version>
              </plugin>
            </plugins>
          </build>
        </profile>
      </profiles>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 1.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/profile-injection-order/pom.xml

      <description>
        Test that profiles are injected in declaration order, with the last profile being the most dominant.
      </description>
    
      <profiles>
        <!-- NOTE: Using intentionally more than two profiles to prevent random test success -->
        <profile>
          <id>pom-a</id>
          <properties>
            <pomProperty>a</pomProperty>
          </properties>
        </profile>
        <profile>
          <id>pom-b</id>
          <properties>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/subproject/pom.xml

            </executions>
          </plugin>
        </plugins>
      </build>
    
      <profiles>
        <profile>
          <!-- an active but empty profile to ensure profile injection does not interfere with plugin configuration -->
          <id>child</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
        </profile>
      </profiles>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.6K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/plugin-management-dependencies/sub/pom.xml

            <version>1.0</version>
        </parent>
        <modelVersion>4.0.0</modelVersion>
        <groupId>org.sonatype.nexus</groupId>
        <artifactId>nexus</artifactId>
        <version>1.3.0-SNAPSHOT</version>
        <profiles>
            <profile>
                <id>test</id>
                <build>
                    <plugins>
                        <plugin>
                            <groupId>org.codehaus.modello</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 737 bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/plugin-injection-merge-order/pom.xml

      <artifactId>test</artifactId>
      <version>0.1</version>
    
      <name>Maven Integration Test :: MNG-4416</name>
      <description>
        Test that merging of plugins during profile injection follows these rules regarding ordering:
         model:   X ->      A -> B ->      D -> E
         profile:      Y -> A ->      C -> D ->      F
         result:  X -> Y -> A -> B -> C -> D -> E -> F
      </description>
    
      <build>
        <plugins>
          <plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 4.4K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/unique-dependency-key/deps-in-profile/pom.xml

    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.mng4005</groupId>
      <artifactId>b</artifactId>
      <version>0.1</version>
      <packaging>jar</packaging>
    
      <profiles>
        <profile>
          <id>test</id>
          <dependencies>
            <dependency>
              <groupId>org.apache.maven.its.mng4005</groupId>
              <artifactId>a</artifactId>
              <version>0.1</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.4K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/managed-profile-dependency/sub/pom.xml

      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-4034</name>
      <description>
        Verify that dependencies defined in profiles are subject to the dependency management of the parent.
      </description>
    
      <profiles>
        <profile>
          <id>maven-core-it</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
          <dependencies>
            <dependency>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.7K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/inherited-properties-interpolation/active-profile/sub/pom.xml

      </description>
    
      <properties>
        <overridden>CHILD</overridden>
      </properties>
    
      <profiles>
        <profile>
          <id>it-child</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
        </profile>
      </profiles>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.6K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/plugin-interpolation-build/pom.xml

                    </configuration>
                  </execution>
                </executions>
              </plugin>
            </plugins>
          </build>
        </profile>
    
        <profile>
          <id>inactiveProfile</id>
          <properties>
            <prop-inactive>||${project.basedir}||</prop-inactive>
          </properties>
          <build>
            <plugins>
              <plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 12 10:26:40 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-settings/test-pom-and-settings-interpolation/pom.xml

      </properties>
    
      <profiles>
        <profile>
          <id>pom</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
          <properties>
            <pomProfile>applied</pomProfile>
            <pomVsSettings>pom</pomVsSettings>
          </properties>
        </profile>
      </profiles>
    
      <build>
        <plugins>
          <plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 11 18:17:16 GMT 2021
    - 2.4K bytes
    - Viewed (0)
Back to top