Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for setArtifactId (0.21 sec)

  1. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

            PluginDescriptor pluginDescriptor = new PluginDescriptor();
    
            pluginDescriptor.setSource(source);
            pluginDescriptor.setGroupId(extractGroupId(c));
            pluginDescriptor.setArtifactId(extractArtifactId(c));
            pluginDescriptor.setVersion(extractVersion(c));
            pluginDescriptor.setGoalPrefix(extractGoalPrefix(c));
    
            pluginDescriptor.setName(extractName(c));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/graph/ProjectSelectorTest.java

        }
    
        private MavenProject createMavenProject(String artifactId) {
            MavenProject mavenProject = new MavenProject();
            mavenProject.setGroupId("org.apache.maven");
            mavenProject.setArtifactId(artifactId);
            mavenProject.setVersion("1.0");
            mavenProject.setFile(new File(artifactId, "some-dir"));
            mavenProject.setCollectedProjects(new ArrayList<>());
            return mavenProject;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java

            //
            // We should get a whole slew of dependencies resolving this artifact transitively
            //
            Dependency d = new Dependency();
            d.setGroupId("org.apache.maven.its");
            d.setArtifactId("b");
            d.setVersion("0.1");
            d.setScope(Artifact.SCOPE_COMPILE);
            Artifact artifact = repositorySystem.createDependencyArtifact(d);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java

                                phase);
                        continue;
                    }
    
                    Plugin plugin = new Plugin();
                    plugin.setGroupId(gs.groupId);
                    plugin.setArtifactId(gs.artifactId);
                    plugin.setVersion(gs.version);
    
                    plugin.setLocation("", location);
                    plugin.setLocation("groupId", location);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            String key = "${project.artifactId} with version: ${project.version}";
    
            MavenProject project = createDefaultProject();
            project.setArtifactId("test");
            project.setVersion("1");
    
            ExpressionEvaluator ee = createExpressionEvaluator(project, new Properties());
    
            Object value = ee.evaluate(key);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/classrealm/DefaultClassRealmManagerTest.java

            artifacts.add(artifact2);
    
            return artifacts;
        }
    
        private Model newTestModel() {
            Model model = new Model();
            model.setGroupId("modelGroup1");
            model.setArtifactId("modelArtifact1");
            model.setVersion("modelVersion1");
    
            return model;
        }
    
        @Test
        void testDebugEnabled() throws PlexusContainerException {
            Logger logger = mock(Logger.class);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

            if (build != null) {
                for (Extension extension : build.getExtensions()) {
                    Plugin plugin = new Plugin();
                    plugin.setGroupId(extension.getGroupId());
                    plugin.setArtifactId(extension.getArtifactId());
                    plugin.setVersion(extension.getVersion());
                    XmlNode configuration = extension.getDelegate().getConfiguration();
                    if (configuration != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java

            setBaseVersionInternal(version);
        }
    
        @Override
        public void setGroupId(String groupId) {
            this.groupId = groupId;
        }
    
        @Override
        public void setArtifactId(String artifactId) {
            this.artifactId = artifactId;
        }
    
        @Override
        public boolean isSnapshot() {
            return getBaseVersion() != null
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 19:20:54 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top