Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for guid (0.14 sec)

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

    <project>
      <parent>
        <groupId>gid</groupId>
        <artifactId>child-3</artifactId>
        <version>1.0</version>
        <relativePath>child3.xml</relativePath>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>child-2</artifactId>
      <packaging>pom</packaging>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Aug 05 21:42:06 GMT 2009
    - 279 bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/profile-module/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>gid</groupId>
      <artifactId>aid</artifactId>
      <version>1.0</version>
      <packaging>pom</packaging>
      <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>
    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/projects/reread/pom1.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>gid</groupId>
      <artifactId>aid</artifactId>
      <version>1.0</version>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sun Feb 14 15:56:25 GMT 2021
    - 945 bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/reread/pom2.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>gid</groupId>
      <artifactId>aid</artifactId>
      <version>1.0</version>
      <name>PROJECT NAME</name>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sun Feb 14 15:56:25 GMT 2021
    - 973 bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/system-property-interpolation/pom.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>gid</groupId>
      <artifactId>aid</artifactId>
      <version>1.0</version>
    
      <name>${system.property}</name>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 981 bytes
    - Viewed (0)
  6. CONTRIBUTING.md

    start the first line of a commit with '(doc)' instead of a ticket number.
    
    Additional Resources
    --------------------
    
    + [Contributing patches](https://maven.apache.org/guides/development/guide-maven-development.html#Creating_and_submitting_a_patch)
    + [Apache Maven JIRA project page](https://issues.apache.org/jira/projects/MNG/)
    + [Contributor License Agreement][cla]
    + [General GitHub documentation](https://help.github.com/)
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Oct 10 09:48:27 GMT 2021
    - 4.7K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("https://project.url/download", pom.getValue("distributionManagement/downloadUrl"));
            assertEquals("reloc-gid", pom.getValue("distributionManagement/relocation/groupId"));
            assertEquals("reloc-aid", pom.getValue("distributionManagement/relocation/artifactId"));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelTransformerContextBuilder.java

                }
    
                @Override
                public Model getRawModel(Path from, String gId, String aId) {
                    Model model = findRawModel(from, gId, aId);
                    if (model != null) {
                        context.modelByGA.put(new GAKey(gId, aId), new Holder(model));
                        context.modelByPath.put(model.getPomFile(), new Holder(model));
                    }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/plugin-management-dependencies/sub/pom.xml

    <project>
        <parent>
            <groupId>gid</groupId>
            <artifactId>aid</artifactId>
            <version>1.0</version>
        </parent>
        <modelVersion>4.0.0</modelVersion>
        <groupId>org.sonatype.nexus</groupId>
        <artifactId>nexus</artifactId>
        <version>1.3.0-SNAPSHOT</version>
        <profiles>
            <profile>
                <id>test</id>
                <build>
                    <plugins>
                        <plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 737 bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

                    constituent.getType(),
                    constituent.getClassifier(),
                    constituent.getVersion());
        }
    
        private static String getId(String gid, String aid, String type, String cls, String ver) {
            return gid + ':' + aid + ':' + type + ((cls != null && !cls.isEmpty()) ? ':' + cls : "") + ':' + ver;
        }
    
        private void callDelegates(
                ClassRealm classRealm,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:53:42 GMT 2024
    - 12.4K bytes
    - Viewed (0)
Back to top