Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for setArtifactId (0.24 sec)

  1. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

                            }
                            if (relocation.getArtifactId() != null) {
                                artifact.setArtifactId(relocation.getArtifactId());
                                relocatedArtifact = artifact;
                                project.setArtifactId(relocation.getArtifactId());
                            }
                            if (relocation.getVersion() != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

        /**
         * Returns the artifactId for this publication.
         */
        String getArtifactId();
    
        /**
         * Sets the artifactId for this publication.
         */
        void setArtifactId(String artifactId);
    
        /**
         * Returns the version for this publication.
         */
        String getVersion();
    
        /**
         * Sets the version for this publication.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. api/maven-api-metadata/src/main/mdo/metadata.mdo

                        break;
                    }
                }
    
                if ( !found )
                {
                    Plugin mappedPlugin = new Plugin();
    
                    mappedPlugin.setArtifactId( plugin.getArtifactId() );
    
                    mappedPlugin.setPrefix( plugin.getPrefix() );
    
                    mappedPlugin.setName( plugin.getName() );
    
                    addPlugin( mappedPlugin );
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

            }
        }
    
        private boolean isCompatible(PluginVersionRequest request, String version) {
            Plugin plugin = new Plugin();
            plugin.setGroupId(request.getGroupId());
            plugin.setArtifactId(request.getArtifactId());
            plugin.setVersion(version);
    
            PluginDescriptor pluginDescriptor;
    
            try {
                pluginDescriptor = pluginManager.getPluginDescriptor(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 09 20:17:59 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publisher/AbstractMavenPublisher.java

                versioning.setRelease(version);
            }
            versioning.updateTimestamp();
    
            Metadata metadata = new Metadata();
            metadata.setGroupId(groupId);
            metadata.setArtifactId(artifactId);
            metadata.setVersioning(versioning);
            return metadata;
        }
    
        private Versioning getExistingVersioning(ExternalResourceRepository repository, ExternalResourceName metadataResource) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:20:56 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublication.java

        }
    
        @Override
        public String getArtifactId() {
            return pom.getCoordinates().getArtifactId().get();
        }
    
        @Override
        public void setArtifactId(String artifactId) {
            pom.getCoordinates().getArtifactId().set(artifactId);
        }
    
        @Override
        public String getVersion() {
            return pom.getCoordinates().getVersion().get();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

        }
    
        private MavenProject createMavenProject(String groupId, String artifactId) {
            MavenProject project = new MavenProject();
            project.setGroupId(groupId);
            project.setArtifactId(artifactId);
            return project;
        }
    
        static String stripAnsiCodes(String msg) {
            return msg.replaceAll("\u001b\\[[;\\d]*[ -/]*[@-~]", "");
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
Back to top