Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 191 - 200 of 582 for artifactId2 (0.08 seconds)

  1. compat/maven-model-builder/src/test/java/org/apache/maven/model/inheritance/DefaultInheritanceAssemblerTest.java

            Model parent = getModel("module-path-not-artifactId-parent");
    
            Model child = getModel("module-path-not-artifactId-child");
    
            SimpleProblemCollector problems = new SimpleProblemCollector();
    
            assembler.assembleModelInheritance(child, parent, null, problems);
    
            File actual = new File("target/test-classes/poms/inheritance/module-path-not-artifactId-actual.xml");
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 8.2K bytes
    - Click Count (0)
  2. compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java

                String message,
                String groupId,
                String artifactId,
                String version,
                String type,
                String classifier,
                List<ArtifactRepository> remoteRepositories,
                List<String> path) {
            this(message, groupId, artifactId, version, type, classifier, remoteRepositories, path, null);
        }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Apr 01 21:22:14 GMT 2025
    - 10.1K bytes
    - Click Count (0)
  3. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ModelVersionUtilsTest.java

                String pomXml = """
                    <?xml version="1.0" encoding="UTF-8"?>
                    <project xmlns="http://maven.apache.org/POM/4.0.0">
                        <groupId>test</groupId>
                        <artifactId>test</artifactId>
                        <version>1.0.0</version>
                    </project>
                    """;
    
                Document document = Document.of(pomXml);
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 19.6K bytes
    - Click Count (0)
  4. compat/maven-resolver-provider/src/test/resources/repo/ut/simple/parent/1.0/parent-1.0.pom

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>ut.simple</groupId>
      <artifactId>parent</artifactId>
      <version>1.0</version>
      <packaging>pom</packaging>
    
      <name>Simple Unit Test Parent</name>
    
      <dependencyManagement>
        <dependencies>
          <dependency>
            <groupId>ut.simple</groupId>
            <artifactId>dependency</artifactId>
            <version>1.0</version>
          </dependency>
        </dependencies>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.5K bytes
    - Click Count (0)
  5. impl/maven-core/src/test/java/org/apache/maven/classrealm/DefaultClassRealmManagerTest.java

            artifacts.add(artifact);
    
            Artifact artifact2 = mock(Artifact.class);
            when(artifact2.getFile()).thenReturn(null);
            when(artifact2.getGroupId()).thenReturn("group1");
            when(artifact2.getArtifactId()).thenReturn("artifact2");
            when(artifact2.getExtension()).thenReturn("ext");
            when(artifact2.getClassifier()).thenReturn("classifier1");
            when(artifact2.getVersion()).thenReturn("1");
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  6. compat/maven-artifact/src/main/java/org/apache/maven/artifact/InvalidArtifactRTException.java

            this.artifactId = artifactId;
            this.version = version;
            this.type = type;
            this.baseMessage = message;
        }
    
        public InvalidArtifactRTException(
                String groupId, String artifactId, String version, String type, String message, Throwable cause) {
            super(cause);
    
            this.groupId = groupId;
            this.artifactId = artifactId;
            this.version = version;
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  7. compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java

            private String groupId;
    
            private String artifactId;
    
            private String version;
    
            private String extension;
    
            private String classifier;
    
            public Artifact(String groupId, String artifactId, String version, String extension, String classifier) {
                this.groupId = groupId;
                this.artifactId = artifactId;
                this.version = version;
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jan 10 07:09:12 GMT 2025
    - 16.9K bytes
    - Click Count (0)
  8. compat/maven-model-builder/src/test/resources/poms/validation/deprecated-dependency-metaversions-latest-and-release.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>gid</groupId>
      <artifactId>aid</artifactId>
      <version>0.1</version>
    
        <dependencies>
          <dependency>
            <groupId>test</groupId>
            <artifactId>a</artifactId>
            <version>LATEST</version>
          </dependency>
          <dependency>
            <groupId>test</groupId>
            <artifactId>b</artifactId>
            <version>RELEASE</version>
            </dependency>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.2K bytes
    - Click Count (0)
  9. compat/maven-model-builder/src/test/resources/poms/validation/missing-plugin-dependency-groupId.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>aid</artifactId>
      <groupId>gid</groupId>
      <version>1.0</version>
    
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-it-plugin</artifactId>
            <version>1.0</version>
            <dependencies>
              <dependency>
                <!-- groupId missing -->
                <artifactId>a</artifactId>
                <version>2.0</version>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.2K bytes
    - Click Count (0)
  10. compat/maven-model-builder/src/test/resources/poms/validation/raw-model/self-referencing-classifier.xml

      <groupId>com.example.group</groupId>
      <artifactId>testvalidpom</artifactId>
      <version>0.0.1-SNAPSHOT</version>
    
      <description>
        This will test if the module validator recognized that this dependency with classifier
        is not the same as the module itself.
      </description>
      <dependencies>
        <dependency>
          <groupId>com.example.group</groupId>
          <artifactId>testvalidpom</artifactId>
          <version>0.0.1-SNAPSHOT</version>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.5K bytes
    - Click Count (0)
Back to Top