Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for onApply (0.16 sec)

  1. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/TestIdePlugin.groovy

    import org.gradle.api.Project
    
    class TestIdePlugin extends IdePlugin {
        @Override protected String getLifecycleTaskName() {
            return 'testIde'
        }
    
        @Override protected void onApply(Project target) {
            def worker = target.task('generateXml')
            addWorker(target.getTasks().named(worker.getName()), worker.getName());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1008 bytes
    - Viewed (0)
  2. platforms/ide/base-ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/IdePluginTest.groovy

            cleaner instanceof Delete
        }
    }
    
    class TestIdePlugin extends IdePlugin {
        @Override protected String getLifecycleTaskName() {
            return 'testIde'
        }
    
        @Override protected void onApply(Project target) {
            def worker = target.task('generateXml')
            addWorker(target.getTasks().named(worker.getName()), worker.getName());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/ide/base-ide-plugins/src/main/java/org/gradle/plugins/ide/internal/IdePlugin.java

                @Override
                public void execute(Task task) {
                    task.setGroup("IDE");
                    task.shouldRunAfter(cleanTask);
                }
            });
            onApply(target);
        }
    
        public TaskProvider<? extends Task> getLifecycleTask() {
            return lifecycleTask;
        }
    
        public TaskProvider<? extends Task> getCleanTask() {
            return cleanTask;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/plugins/VisualStudioPlugin.java

        }
    
        @Override
        protected String getLifecycleTaskName() {
            return LIFECYCLE_TASK_NAME;
        }
    
        @Override
        protected void onApply(final Project target) {
            project.getPluginManager().apply(LifecycleBasePlugin.class);
    
            // Create Visual Studio project extensions
            final VisualStudioExtensionInternal extension;
            if (isRoot()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipseWtpPlugin.java

            this.instantiator = instantiator;
        }
    
        @Override
        protected String getLifecycleTaskName() {
            return "eclipseWtp";
        }
    
        @Override
        protected void onApply(Project project) {
            project.getPluginManager().apply(EclipsePlugin.class);
    
            getLifecycleTask().configure(withDescription("Generates Eclipse wtp configuration files."));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/plugins/XcodePlugin.java

            this.artifactRegistry = artifactRegistry;
        }
    
        @Override
        protected String getLifecycleTaskName() {
            return "xcode";
        }
    
        @Override
        protected void onApply(final Project project) {
            TaskProvider<? extends Task> lifecycleTask = getLifecycleTask();
            lifecycleTask.configure(withDescription("Generates XCode project files (pbxproj, xcworkspace, xcscheme)"));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipsePlugin.java

            this.jvmPluginServices = jvmPluginServices;
        }
    
        @Override
        protected String getLifecycleTaskName() {
            return ECLIPSE_TASK_NAME;
        }
    
        @Override
        protected void onApply(Project project) {
            getLifecycleTask().configure(withDescription("Generates all Eclipse files."));
            getCleanTask().configure(withDescription("Cleans all Eclipse files."));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/IdeaPlugin.java

        public IdeaModel getModel() {
            return ideaModel;
        }
    
        @Override
        protected String getLifecycleTaskName() {
            return "idea";
        }
    
        @Override
        protected void onApply(final Project project) {
            getLifecycleTask().configure(withDescription("Generates IDEA project files (IML, IPR, IWS)"));
            getCleanTask().configure(withDescription("Cleans IDEA project files (IML, IPR)"));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  9. test-site/activator-launch-1.3.2.jar

    xsbt/boot/ServerLauncher$ServerUriLine$.class package xsbt.boot; public final synchronized class ServerLauncher$ServerUriLine$ { public static final ServerLauncher$ServerUriLine$ MODULE$; public static void <clinit>(); public static scala.Option unapply(String); public void ServerLauncher$ServerUriLine$(); } xsbt/boot/ServerLauncher$$anonfun$3.class package xsbt.boot; public final synchronized class ServerLauncher$$anonfun$3 extends scala.runtime.AbstractFunction1 implements scala.Serializable {...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top