Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for defaults (0.18 sec)

  1. maven-core/src/test/resources-project-builder/plugin-exec-merging/wo-plugin-mgmt/sub/pom.xml

            <executions>
              <execution>
                <!-- NOTE: Explicitly reference "default" id here -->
                <id>default</id>
                <phase>child-default</phase>
              </execution>
              <execution>
                <id>non-default</id>
                <phase>child-non-default</phase>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    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)
  2. maven-core/src/test/resources-project-builder/plugin-exec-merging/w-plugin-mgmt/pom.xml

              <executions>
                <execution>
                  <!-- NOTE: Implicitly reference "default" id here, i.e. omit the <id> element -->
                  <phase>parent-default</phase>
                </execution>
                <execution>
                  <id>non-default</id>
                  <phase>parent-non-default</phase>
                </execution>
              </executions>
            </plugin>
          </plugins>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/plugin-exec-merging/wo-plugin-mgmt/pom.xml

            <executions>
              <execution>
                <!-- NOTE: Implicitly reference "default" id here, i.e. omit the <id> element -->
                <phase>parent-default</phase>
              </execution>
              <execution>
                <id>non-default</id>
                <phase>parent-non-default</phase>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    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)
  4. maven-core/src/test/resources-project-builder/plugin-exec-merging/w-plugin-mgmt/sub/pom.xml

            <executions>
              <execution>
                <!-- NOTE: Explicitly reference "default" id here -->
                <id>default</id>
                <phase>child-default</phase>
              </execution>
              <execution>
                <id>non-default</id>
                <phase>child-non-default</phase>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    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)
  5. maven-core/src/test/resources-project-builder/pom-inheritance/pom.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <!--
      This parent POM overrides most super POM defaults to test inheritance in child modules.
      -->
    
      <groupId>org.apache.maven.its.mng3843</groupId>
      <artifactId>parent-1</artifactId>
      <version>0.1</version>
      <packaging>pom</packaging>
    
      <name>parent-name</name>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 5K bytes
    - Viewed (0)
  6. android/pom.xml

      <modules>
        <module>guava</module>
        <module>guava-bom</module>
        <module>guava-testlib</module>
        <module>guava-tests</module>
      </modules>
      <build>
        <!-- Handle where Guava deviates from Maven defaults -->
        <sourceDirectory>src</sourceDirectory>
        <testSourceDirectory>test</testSourceDirectory>
        <resources>
          <resource>
            <directory>../..</directory>
            <includes>
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Mar 12 20:26:18 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/sub/pom.xml

                  <goal>child-2</goal>
                </goals>
              </execution>
              <execution>
                <!-- NOTE: <id> deliberately omitted to use default value -->
                <phase>validate</phase>
                <goals>
                  <goal>child-default</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.1K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/pom-encoding/utf-8/pom.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <!--
    NOTE: This POM's XML declaration specified no encoding which should therefore default to UTF-8.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.mng2254</groupId>
      <artifactId>utf-8</artifactId>
      <version>0.1-SNAPSHOT</version>
      <packaging>pom</packaging>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.2K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/multiple-repos/pom.xml

        <packaging>pom</packaging>
    
        <name>MNG-3984</name>
       <repositories>
         <repository>
           <id>central-parent</id>
           <name>Maven Repository Switchboard</name>
           <layout>default</layout>
           <url>https://repo1.maven.org/maven2</url>
           <snapshots>
             <enabled>false</enabled>
           </snapshots>
         </repository>
       </repositories>
    
    
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.3K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/multiple-repos/sub/pom.xml

       <artifactId>test-2</artifactId>
       <version>0.1</version>
    
       <name>MNG-3984</name>
      <repositories>
        <repository>
          <id>central-child</id>
          <name>Maven Repository Switchboard</name>
          <layout>default</layout>
          <url>https://repo1.maven.org/maven2</url>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
        </repository>
      </repositories>
    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)
Back to top