Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for setArtifactId (0.19 sec)

  1. maven-core/src/test/java/org/apache/maven/project/ProjectSorterTest.java

            plugin.setGroupId(groupId);
            plugin.setArtifactId(artifactId);
            plugin.setVersion(version);
            return plugin;
        }
    
        private Extension createExtension(String groupId, String artifactId, String version) {
            Extension extension = new Extension();
            extension.setGroupId(groupId);
            extension.setArtifactId(artifactId);
            extension.setVersion(version);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGenerator.java

            model.setModelVersion(POM_VERSION);
    
            MavenPublicationCoordinates coordinates = pom.getCoordinates();
            model.setGroupId(coordinates.getGroupId().get());
            model.setArtifactId(coordinates.getArtifactId().get());
            model.setVersion(coordinates.getVersion().get());
    
            model.setPackaging(pom.getPackagingProperty().getOrNull());
            model.setName(pom.getName().getOrNull());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java

        void setUp() {
            Dependency dependency1 = new Dependency();
            dependency1.setArtifactId("dep1");
            Dependency dependency2 = new Dependency();
            dependency2.setArtifactId("dep2");
    
            project = new Project();
            project.setModelVersion("4.0.0");
            project.setGroupId("org.apache.maven");
            project.setArtifactId("maven-core");
            project.setName("Maven");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

        void testPluginLoading() throws Exception {
            MavenSession session = createMavenSession(null);
            Plugin plugin = new Plugin();
            plugin.setGroupId("org.apache.maven.its.plugins");
            plugin.setArtifactId("maven-it-plugin");
            plugin.setVersion("0.1");
            PluginDescriptor pluginDescriptor = pluginManager.loadPlugin(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

                model.setArtifactId(artifactId);
                model.setVersion(version);
                model.setBuild(new Build());
                project = new MavenProject(model);
            }
    
            public ProjectBuilder setGroupId(String groupId) {
                project.setGroupId(groupId);
                return this;
            }
    
            public ProjectBuilder setArtifactId(String artifactId) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

                model.setArtifactId(artifactId);
                model.setVersion(version);
                model.setBuild(new Build());
                project = new MavenProject(model);
            }
    
            public ProjectBuilder setGroupId(String groupId) {
                project.setGroupId(groupId);
                return this;
            }
    
            public ProjectBuilder setArtifactId(String artifactId) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

                // groupId
                // artifactId
                // version
                // goal
                //
                plugin = new Plugin();
                plugin.setGroupId(tok[0]);
                plugin.setArtifactId(tok[1]);
                plugin.setVersion(tok[2]);
                goal = tok[3];
    
                // This won't be valid, but it constructs something easy to read in the error message
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

            parent.setArtifactId(parentProject.getArtifactId());
            project.getModel().setParent(parent);
            return project;
        }
    
        private MavenProject getMavenProject(String artifactId) {
            MavenProject mavenProject = new MavenProject();
            mavenProject.setGroupId(GROUP_ID);
            mavenProject.setArtifactId(artifactId);
            mavenProject.setVersion("1.0");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

            dependency.setArtifactId(artifactId);
            dependency.setVersion(version);
            dependency.setType("jar");
            dependency.setScope("compile");
    
            return factory.createDependencyArtifact(dependency);
        }
    
        private MojoExecution newMojoExecution() {
            PluginDescriptor pd = new PluginDescriptor();
            pd.setArtifactId("my-plugin");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  10. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

        public PluginDescriptor() {}
    
        public PluginDescriptor(PluginDescriptor original) {
            this.setGroupId(original.getGroupId());
            this.setArtifactId(original.getArtifactId());
            this.setVersion(original.getVersion());
            this.setGoalPrefix(original.getGoalPrefix());
            this.setInheritedByDefault(original.isInheritedByDefault());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 14 17:14:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top