Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 560 for artifactId (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java

        public ModelResolver newCopy() {
            return new ProjectModelResolver(this);
        }
    
        public ModelSource resolveModel(String groupId, String artifactId, String version)
                throws UnresolvableModelException {
            Artifact pomArtifact = new DefaultArtifact(groupId, artifactId, "", "pom", version);
    
            try {
                ArtifactRequest request = new ArtifactRequest(pomArtifact, repositories, context);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            assertTrue(value instanceof Collection);
    
            @SuppressWarnings("unchecked")
            Collection<Artifact> artifacts = (Collection<Artifact>) value;
    
            assertEquals(1, artifacts.size());
    
            Artifact result = artifacts.iterator().next();
    
            assertEquals("org.myco.plugins", result.getGroupId());
        }
    
        @Test
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 19.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/ReactorModelPool.java

            private final String groupId;
    
            private final String artifactId;
    
            private final int hashCode;
    
            GAKey(String groupId, String artifactId) {
                this.groupId = (groupId != null) ? groupId : "";
                this.artifactId = (artifactId != null) ? artifactId : "";
    
                hashCode = Objects.hash(this.groupId, this.artifactId);
            }
    
            @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4K bytes
    - Viewed (0)
  4. maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java

                    artifact.getType(),
                    artifact.getClassifier(),
                    remoteRepositories,
                    artifact.getDependencyTrail(),
                    t);
            this.artifact = artifact;
        }
    
        public Artifact getArtifact() {
            return artifact;
        }
    
        public String getGroupId() {
            return groupId;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginDescriptorCache.java

                }
    
                if (!(obj instanceof CacheKey)) {
                    return false;
                }
    
                CacheKey that = (CacheKey) obj;
    
                return Objects.equals(this.artifactId, that.artifactId)
                        && Objects.equals(this.groupId, that.groupId)
                        && Objects.equals(this.version, that.version)
                        && Objects.equals(this.localRepo, that.localRepo)
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 6K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/version/PluginVersionRequest.java

        /**
         * Gets the artifact id of the plugin.
         *
         * @return The artifact id of the plugin.
         */
        String getArtifactId();
    
        /**
         * Sets the artifact id of the plugin.
         *
         * @param artifactId The artifact id of the plugin.
         * @return This request, never {@code null}.
         */
        PluginVersionRequest setArtifactId(String artifactId);
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

        Artifact createArtifact(String groupId, String artifactId, String version, String packaging);
    
        Artifact createArtifact(String groupId, String artifactId, String version, String scope, String type);
    
        Artifact createProjectArtifact(String groupId, String artifactId, String version);
    
        Artifact createArtifactWithClassifier(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 7.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/artifact/factory/DefaultArtifactFactory.java

        }
    
        public Artifact createParentArtifact(String groupId, String artifactId, String version) {
            return createProjectArtifact(groupId, artifactId, version);
        }
    
        public Artifact createPluginArtifact(String groupId, String artifactId, VersionRange versionRange) {
            return createArtifact(groupId, artifactId, versionRange, "maven-plugin", null, Artifact.SCOPE_RUNTIME, null);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 6.9K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/EmptyLifecycleBindingsInjector.java

            packagingRegistry = emptyPackagingRegistry;
        }
    
        private static Plugin newPlugin(String artifactId, String... goals) {
            return Plugin.newBuilder()
                    .groupId("org.apache.maven.plugins")
                    .artifactId(artifactId)
                    .executions(Arrays.stream(goals)
                            .map(goal -> PluginExecution.newBuilder()
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/VersionsMetadata.java

        VersionsMetadata(Artifact artifact, Path path, Date timestamp) {
            super(createRepositoryMetadata(artifact), path, timestamp);
            this.artifact = artifact;
        }
    
        private static Metadata createRepositoryMetadata(Artifact artifact) {
    
            Metadata.Builder metadata = Metadata.newBuilder();
            metadata.groupId(artifact.getGroupId());
            metadata.artifactId(artifact.getArtifactId());
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 10:10:21 GMT 2024
    - 4.3K bytes
    - Viewed (0)
Back to top