Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 356 for setgroups1 (0.37 sec)

  1. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifeCyclePluginAnalyzerStub.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();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

            Parent parent = new Parent();
            parent.setGroupId(parentProject.getGroupId());
            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);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  3. 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)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/TaskReportModel.java

    public interface TaskReportModel {
        String DEFAULT_GROUP = "";
    
        /**
         * Returns the task groups which make up this model, in the order that they should be displayed.
         */
        Set<String> getGroups();
    
        /**
         * Returns the tasks for the given group, in the order that they should be displayed.
         */
        Set<TaskDetails> getTasksForGroup(String group);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 30 23:30:16 UTC 2016
    - 1K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/plugins/XcodePlugin.java

                    FileCollection sources = component.getCppSource();
                    xcodeProject.getGroups().getSources().from(sources);
    
                    FileCollection headers = component.getHeaderFiles();
                    xcodeProject.getGroups().getHeaders().from(headers);
    
                    // TODO - should use the _install_ task for an executable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  6. maven-model/src/test/java/org/apache/maven/model/merge/MavenMergerTest.java

        public void mergeGroupId()
        {
            Model target = new Model();
            target.setGroupId( "TARGET" );
    
            Model source = new Model();
            source.setGroupId( "SOURCE" );
    
            modelMerger.merge( target, source, true, null );
            assertThat( target.getGroupId(), is( "SOURCE" ) );
    
            target.setGroupId( "TARGET" );
            modelMerger.merge( target, source, false, null );
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/simple/DefaultGroupSetExclude.java

            return groups.equals(that.groups);
    
        }
    
        @Override
        public int hashCode() {
            return hashCode;
        }
    
        @Override
        public Set<String> getGroups() {
            return groups;
        }
    
        @Override
        public boolean excludes(ModuleIdentifier module) {
            return groups.contains(module.getGroup());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publisher/MavenLocalPublisher.java

            Metadata metadata = new Metadata();
            metadata.setModelVersion("1.1.0");
            metadata.setGroupId(groupId);
            metadata.setArtifactId(artifactId);
            metadata.setVersion(version);
    
            Snapshot snapshot = new Snapshot();
            snapshot.setLocalCopy(true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 04:09:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/task/ShowToolchainsTaskConfigurator.java

        public void execute(ProjectInternal project) {
            project.getTasks().register("javaToolchains", ShowToolchainsTask.class, task -> {
                task.setDescription("Displays the detected java toolchains.");
                task.setGroup(HelpTasksPlugin.HELP_GROUP);
                task.setImpliesSubProjects(true);
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java

                init( af );
            }
            */
        }
        // ------------------------------------------------------------------
        //    public void init( ArtifactMetadata af )
        //    {
        //        setGroupId( af.getGroupId() );
        //        setArtifactId( af.getArtifactId() );
        //        setVersion( af.getVersion() );
        //        setType( af.getType() );
        //        setScope( af.getScope() );
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top