Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for v3 (0.1 sec)

  1. src/mdo/model-v3.vm

    Guillaume Nodet <******@****.***> 1699297484 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolverTest.java

                    1, res.getIncidentEdges(v3).size(), "wrong # of edges v1-v3 in the resulting graph after resolver");
            assertEquals(
                    "1.1",
                    res.getIncidentEdges(v3).get(0).getVersion(),
                    "wrong edge v1-v3 in the resulting graph after resolver");
    
            assertEquals(
                    1, res.getIncidentEdges(v4).size(), "wrong # of edges v3-v4 in the resulting graph after resolver");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. maven-repository-metadata/pom.xml

              <execution>
                <id>modello-v3</id>
                <goals>
                  <goal>velocity</goal>
                </goals>
                <configuration>
                  <version>1.1.0</version>
                  <models>
                    <model>../api/maven-api-metadata/src/main/mdo/metadata.mdo</model>
                  </models>
                  <templates>
                    <template>model-v3.vm</template>
                  </templates>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/repository/metadata/DefaultClasspathTransformationTestType.java

            graph.addEdge(v1, v3, new MetadataGraphEdge("1.2", true, null, null, 4, 2));
    
            // v3-->v4
            graph.addEdge(v3, v4, new MetadataGraphEdge("1.1", true, ArtifactScopeEnum.runtime, null, 2, 2));
            graph.addEdge(v3, v4, new MetadataGraphEdge("1.2", true, ArtifactScopeEnum.test, null, 2, 2));
        }
    
        // ------------------------------------------------------------------------------------------
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. maven-settings/pom.xml

              </execution>
              <execution>
                <id>v3</id>
                <goals>
                  <goal>velocity</goal>
                </goals>
                <phase>generate-sources</phase>
                <configuration>
                  <version>1.3.0</version>
                  <templates>
                    <template>model-v3.vm</template>
                  </templates>
                </configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. maven-xml-impl/src/site/markdown/index.md

    to convey XML snippets in the object model, and also the modified `org.codehaus.plexus.util.xml` package which wraps the immutable objects from `org.apache.maven.api.xml.XmlNode` in order to provide compatibility and interoperability between the API v3.x and v4.x.
    
    See [Maven Plexus Utils](../plexus-utils/) for more information....
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 08 17:54:43 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. maven-model/pom.xml

              </execution>
              <execution>
                <id>model-v3</id>
                <goals>
                  <goal>velocity</goal>
                </goals>
                <phase>generate-sources</phase>
                <configuration>
                  <version>4.0.99</version>
                  <templates>
                    <template>model-v3.vm</template>
                  </templates>
                </configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. maven-model/src/test/resources/xml/pom.xml

                  <version>4.0.0</version>
                  <models>
                    <model>target/mdo/maven.mdo</model>
                  </models>
                  <templates>
                    <template>src/main/mdo/model-v3.vm</template>
                    <template>src/main/mdo/merger.vm</template>
                    <template>src/main/mdo/transformer.vm</template>
                    <template>src/main/mdo/reader.vm</template>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 14 08:23:18 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. maven-toolchain-model/pom.xml

                <goals>
                  <goal>velocity</goal>
                </goals>
                <phase>generate-sources</phase>
                <configuration>
                  <templates>
                    <template>model-v3.vm</template>
                  </templates>
                  <params>
                    <param>packageModelV3=org.apache.maven.toolchain.model</param>
                    <param>packageModelV4=org.apache.maven.api.toolchain</param>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java

            // TODO: we should not modify the underlying model here, but resources should be stored
            // TODO: in a separate field in the project, however, that could break v3 plugins
            MavenProject prj = getMavenProject(nonNull(project, "project"));
            org.apache.maven.model.Resource res = new org.apache.maven.model.Resource(nonNull(resource, "resource"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top