Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for drop (0.2 sec)

  1. maven-core/src/test/resources-project-builder/plugin-interpolation-build/pom.xml

      <artifactId>test</artifactId>
      <version>1.0</version>
    
      <name>MNG-7750</name>
      <description>
        Test build plugin and execution interpolation.
      </description>
    
      <properties>
        <prop-outside>||${project.basedir}||</prop-outside>
      </properties>
    
      <build>
        <plugins>
          <plugin>
            <artifactId>plugin-all-profiles</artifactId>
            <executions>
              <execution>
    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)
  2. maven-core/src/test/resources-project-builder/profile-module/pom.xml

      <modules>
        <module>module-2</module>
        <module>module-1</module>
        <module>module-3</module>
      </modules>
      <profiles>
        <profile>
          <id>a</id>
          <properties>
            <b>test-prop</b>
          </properties>
          <modules>
            <module>module-1</module>
            <module>module-4</module>
          </modules>
        </profile>
      </profiles>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 521 bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/plugin-interpolation-reporting/pom.xml

      <artifactId>test</artifactId>
      <version>1.0</version>
    
      <name>MNG-7750</name>
      <description>
        Test reporting plugin and reportSet interpolation.
      </description>
    
      <properties>
        <prop-outside>||${project.basedir}||</prop-outside>
      </properties>
    
      <reporting>
        <plugins>
          <plugin>
            <artifactId>plugin-all-profiles</artifactId>
            <reportSets>
              <reportSet>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 12 10:26:40 GMT 2023
    - 4K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/consumer/trivial/pom.xml

          <version>5.10.1</version>
          <scope>test</scope>
        </dependency>
      </dependencies>
    
      <profiles>
        <profile>
          <id>release</id>
          <properties>
            <prop>foo</prop>
          </properties>
          <build>
            <plugins>
              <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Tue Nov 28 17:17:10 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/consumer/trivial/child/pom.xml

      <parent>
        <groupId>org.my.group</groupId>
        <artifactId>parent</artifactId>
      </parent>
      <artifactId>child</artifactId>
      <packaging>jar</packaging>
    
      <properties>
        <prop-child>bar</prop-child>
      </properties>
      <dependencies>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
        </dependency>
      </dependencies>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Tue Nov 28 17:17:10 GMT 2023
    - 430 bytes
    - Viewed (0)
Back to top