Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Change (0.17 sec)

  1. maven-core/src/test/resources-project-builder/xml-whitespace/pom.xml

      <version>
        1.0
      </version>
      <packaging>
        pom
      </packaging>
    
      <name>Maven Integration Test :: MNG-4070</name>
      <description>
        Test that whitespace around artifact coordinates does not change artifact identity.
      </description>
    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)
  2. maven-core/src/test/resources-project-builder/xml-whitespace/sub/pom.xml

      <version>1.0</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-4070 :: Child</name>
      <description>
        Test that whitespace around artifact coordinates does not change artifact identity.
      </description>
    
      <dependencies>
        <dependency>
          <!-- NOTE: The ugly formatting is essential part of this test! -->
          <groupId>   org.apache.maven.its.mng4070   </groupId>
    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)
  3. maven-core/pom.xml

                  <include>org.apache.maven.toolchain</include>
                  <include>org.apache.maven.usability</include>
                </includes>
                <!-- allowed non-binary backwards compatible changes -->
                <excludes>
                  <!-- START default constructor on Plexus/JSR 330 components -->
                  <exclude>org.apache.maven.lifecycle.DefaultLifecycleExecutor#DefaultLifecycleExecutor()</exclude>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  4. pom.xml

    						</goals>
    					</execution>
    				</executions>
    				<configuration>
    					<addDefaultLicenseMatchers>true</addDefaultLicenseMatchers>
    					<excludes>
    						<exclude>pom.xml</exclude>
    						<exclude>breaking-changes.xml</exclude>
    						<exclude>README.md</exclude>
    						<exclude>build.properties</exclude>
    						<exclude>src/test/resources/**</exclude>
    						<exclude>**/*.idl</exclude>
    						<exclude>**/*.css</exclude>
    XML
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 04 13:19:42 GMT 2024
    - 9.3K bytes
    - Viewed (1)
  5. guava-gwt/pom.xml

                  <!--
                    To avoid "java.io.IOException: User limit of inotify watches reached" under JDK10.
                    Presumably we don't need inotify, since we don't intend to change files during the
                    build?
                    -->
                  <extraJvmArgs>-Dgwt.watchFileChanges=false</extraJvmArgs>
                </configuration>
              </execution>
              <!--
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Apr 11 15:00:55 GMT 2024
    - 19.8K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/projects/parent-version-range-local-child-without-version/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>parent-version-range-local</groupId>
      <artifactId>parent</artifactId>
      <version>1</version>
      <packaging>pom</packaging>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Dec 24 18:50:27 GMT 2020
    - 192 bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/parent-version-range-external-child-pom-version-expression/pom.xml

      <parent>
        <groupId>org.apache</groupId>
        <artifactId>apache</artifactId>
        <version>[1,1]</version>
      </parent>
      <artifactId>child</artifactId>
      <!-- Must not use ${project.version} due to version range. -->
      <version>${project.version}</version>
      <packaging>pom</packaging>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Feb 01 13:35:07 GMT 2022
    - 347 bytes
    - Viewed (0)
  8. maven-core/src/test/resources/projects/parent-version-range-external-child-without-version/pom.xml

        <groupId>org.apache</groupId>
        <artifactId>apache</artifactId>
        <version>[1,1]</version>
      </parent>
      <artifactId>child</artifactId>
      <!-- version>2</version Must not inherit version from parent due to version range. -->
      <packaging>pom</packaging>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Fri Feb 10 21:46:52 GMT 2017
    - 331 bytes
    - Viewed (0)
  9. maven-core/src/test/resources/projects/parent-version-range-local-child-revision-expression/child/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>parent-version-range-local</groupId>
        <artifactId>parent</artifactId>
        <version>[1,10]</version>
      </parent>
      <artifactId>child</artifactId>
      <version>${revision}</version>
      <packaging>pom</packaging>
      <properties>
        <revision>1.0-SNAPSHOT</revision>
      </properties>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Feb 01 13:35:07 GMT 2022
    - 361 bytes
    - Viewed (0)
Back to top