Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 335 for varint (0.18 sec)

  1. maven-core/src/test/resources-project-builder/plugin-order/nexus-parent.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.sonatype.nexus</groupId>
      <artifactId>nexus-parent</artifactId>
      <version>8-SNAPSHOT</version>
      <packaging>pom</packaging>
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.codehaus.plexus</groupId>
              <artifactId>plexus-component-metadata</artifactId>
              <version>1.4.0</version>
            </plugin>
            </plugins>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Oct 24 16:34:48 GMT 2009
    - 482 bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/ProjectModelResolverTest.java

            parent.setArtifactId("apache");
            parent.setVersion("1");
    
            assertNotNull(this.newModelResolver().resolveModel(parent.getDelegate(), new AtomicReference<>()));
            assertEquals("1", parent.getVersion());
        }
    
        @Test
        void testResolveParentSuccessfullyResolvesExistingParentUsingHighestVersion() throws Exception {
            final Parent parent = new Parent();
            parent.setGroupId("org.apache");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 03 17:49:40 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/pom-inheritance/pom.xml

        <name>parent-org</name>
        <url>https://parent-org.url/</url>
      </organization>
      <licenses>
        <license>
          <name>parent-license</name>
          <url>https://parent.url/license</url>
          <distribution>repo</distribution>
        </license>
      </licenses>
    
      <developers>
        <developer>
          <name>parent-developer</name>
        </developer>
      </developers>
      <contributors>
        <contributor>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/pom.xml

              <configuration>
                <listParam>
                  <!-- NOTE: These values are deliberately not in alpha order! -->
                  <listParam>PARENT-1</listParam>
                  <listParam>PARENT-3</listParam>
                  <listParam>PARENT-2</listParam>
                  <listParam>PARENT-4</listParam>
                </listParam>
              </configuration>
            </plugin>
          </plugins>
        </pluginManagement>
        <plugins>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.9K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                throws ModelBuilderException {
            problems.setSource(childModel);
    
            Parent parent = childModel.getParent();
    
            String groupId = parent.getGroupId();
            String artifactId = parent.getArtifactId();
            String version = parent.getVersion();
    
            ModelResolver modelResolver = getModelResolver(request);
            Objects.requireNonNull(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/pom.xml

              <executions>
                <execution>
                  <id>parent-1</id>
                  <phase>validate</phase>
                  <goals>
                    <goal>parent-1</goal>
                  </goals>
                </execution>
                <execution>
                  <id>parent-2</id>
                  <phase>validate</phase>
                  <goals>
                    <goal>parent-2</goal>
                  </goals>
                </execution>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/parent-version-range-local-child-project-version-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>
      <!-- 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
    - 364 bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/plugin-exec-merging-wo-version/pom.xml

            <artifactId>maven-it-plugin-a</artifactId>
            <version>1.0</version>
            <executions>
              <execution>
                <id>parent-1</id>
                <phase>parent-1</phase>
              </execution>
              <execution>
                <id>parent-2</id>
                <phase>parent-2</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.7K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/plugin-exec-merging-version-insensitive/sub/pom.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>org.apache.maven.its.mng3916</groupId>
        <artifactId>parent</artifactId>
        <version>0.1</version>
      </parent>
    
      <artifactId>child</artifactId>
    
      <name>Maven Integration Test :: MNG-3943</name>
      <description>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.8K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/dependency-management-with-interpolation/sub/pom.xml

    <?xml version="1.0"?><project>
      <parent>
        <artifactId>asm-parent</artifactId>
        <groupId>asm</groupId>
        <version>3.0</version>
      </parent>
      <modelVersion>4.0.0</modelVersion>
    
      <artifactId>asm-xml</artifactId>
      <version>3.0</version>
      <dependencies>
        <dependency>
          <groupId>asm</groupId>
          <artifactId>asm-util</artifactId>
        </dependency>
      </dependencies>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 395 bytes
    - Viewed (0)
Back to top