Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 471 for artifactId (0.54 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java

    import java.util.Collection;
    
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.artifact.ArtifactScopeEnum;
    
    /**
     * Artifact Metadata that is resolved independent of Artifact itself.
     *
     */
    @Deprecated
    public class ArtifactMetadata {
        /**
         * standard glorified artifact coordinates
         */
        protected String groupId;
    
        protected String artifactId;
        protected String version;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.6K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/AbstractArtifactMetadata.java

    import org.apache.maven.artifact.Artifact;
    
    /**
     * Common elements of artifact metadata.
     *
     */
    @Deprecated
    public abstract class AbstractArtifactMetadata implements ArtifactMetadata {
        private static final String LS = System.lineSeparator();
    
        protected Artifact artifact;
    
        protected AbstractArtifactMetadata(Artifact artifact) {
            this.artifact = artifact;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomArtifactTransformerTest.java

            @Override
            public String getUserProperty(String key) {
                return null;
            }
    
            @Override
            public Model getRawModel(Path from, String groupId, String artifactId) throws IllegalStateException {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public Model getRawModel(Path from, Path p) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelResolver.java

        @Override
        public ModelSource resolveModel(
                Session session, String groupId, String artifactId, String version, Consumer<String> resolvedVersion)
                throws ModelResolverException {
            try {
                ArtifactCoordinate coord = session.createArtifactCoordinate(groupId, artifactId, version, "pom");
                if (coord.getVersion().getVersionRange() != null
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/GroupRepositoryMetadata.java

        }
    
        public String getBaseVersion() {
            return null;
        }
    
        public void addPluginMapping(String goalPrefix, String artifactId) {
            addPluginMapping(goalPrefix, artifactId, artifactId);
        }
    
        public void addPluginMapping(String goalPrefix, String artifactId, String name) {
            List<Plugin> plugins = getMetadata().getPlugins();
            boolean found = false;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java

                checkUnknownMojoConfigurationParameters(mojoExecution);
            }
        }
    
        private Plugin findPlugin(String groupId, String artifactId, Collection<Plugin> plugins) {
            for (Plugin plugin : plugins) {
                if (artifactId.equals(plugin.getArtifactId()) && groupId.equals(plugin.getGroupId())) {
                    return plugin;
                }
            }
    
            return null;
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/relocation/UserPropertiesArtifactRelocationSource.java

        }
    
        private static Predicate<Artifact> artifactPredicate(Artifact artifact) {
            return a -> matches(artifact.getGroupId(), a.getGroupId())
                    && matches(artifact.getArtifactId(), a.getArtifactId())
                    && matches(artifact.getBaseVersion(), a.getBaseVersion())
                    && matches(artifact.getExtension(), a.getExtension())
                    && matches(artifact.getClassifier(), a.getClassifier());
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelCache.java

     * formed by a combination of group id, artifact id, version and tag. The first three components generally refer to the
     * identity of a model. The tag allows for further classification of the associated data on the sole discretion of the
     * model builder.
     *
     */
    public interface ModelCache {
    
        <T> T computeIfAbsent(String groupId, String artifactId, String version, String tag, Supplier<T> data);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleExecutor.java

                plugins = Collections.emptySet();
            }
    
            return plugins;
        }
    
        private Plugin newPlugin(String artifactId, String... goals) {
            Plugin plugin = new Plugin();
    
            plugin.setGroupId("org.apache.maven.plugins");
            plugin.setArtifactId(artifactId);
    
            for (String goal : goals) {
                PluginExecution pluginExecution = new PluginExecution();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/version/PluginVersionResolutionException.java

        private final String artifactId;
    
        private final String baseMessage;
    
        public PluginVersionResolutionException(String groupId, String artifactId, String baseMessage, Throwable cause) {
            super("Error resolving version for plugin '" + groupId + ":" + artifactId + "': " + baseMessage, cause);
    
            this.groupId = groupId;
            this.artifactId = artifactId;
            this.baseMessage = baseMessage;
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 3.5K bytes
    - Viewed (0)
Back to top