Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for createPluginArtifact (0.4 sec)

  1. maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java

                    new DefaultRepositoryLayout(),
                    new ArtifactRepositoryPolicy(),
                    new ArtifactRepositoryPolicy());
        }
    
        public Artifact createPluginArtifact(Plugin plugin) {
            VersionRange versionRange;
            try {
                String version = plugin.getVersion();
                if (version == null || version.isEmpty()) {
                    version = "RELEASE";
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

        public Artifact createParentArtifact(String groupId, String artifactId, String version) {
            return artifactFactory.createParentArtifact(groupId, artifactId, version);
        }
    
        public Artifact createPluginArtifact(Plugin plugin) {
            String version = plugin.getVersion();
            if (version == null || version.isEmpty()) {
                version = "RELEASE";
            }
    
            VersionRange versionRange;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

        Artifact createArtifactWithClassifier(
                String groupId, String artifactId, String version, String type, String classifier);
    
        Artifact createPluginArtifact(Plugin plugin);
    
        Artifact createDependencyArtifact(Dependency dependency);
    
        ArtifactRepository buildArtifactRepository(Repository repository) throws InvalidRepositoryException;
    
    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)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                Set<Artifact> pluginArtifacts = new HashSet<>();
                for (Plugin plugin : project.getModel().getDelegate().getBuild().getPlugins()) {
                    Artifact artifact = repositorySystem.createPluginArtifact(new org.apache.maven.model.Plugin(plugin));
    
                    if (artifact != null) {
                        pluginArtifacts.add(artifact);
                    }
                }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

            return createParentArtifactX(groupId, artifactId, version);
        }
    
        // DefaultProjectBuilder
        public Artifact createPluginArtifact(Plugin plugin) {
            VersionRange versionRange;
            try {
                String version = plugin.getVersion();
                if (version == null || version.isEmpty()) {
                    version = "RELEASE";
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 32.6K bytes
    - Viewed (0)
Back to top