Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for eclipseWtp (0.19 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtpComponent.java

         * <p>
         * For examples see docs for {@link EclipseWtp}
         */
        public String getDeployName() {
            return deployName;
        }
    
        public void setDeployName(String deployName) {
            this.deployName = deployName;
        }
    
        /**
         * Additional wb-resource elements.
         * <p>
         * For examples see docs for {@link EclipseWtp}
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpPluginTest.groovy

            wtpPlugin.cleanTask.get().description
        }
    
        def "does not break when eclipse and eclipseWtp applied"() {
            expect:
            project.apply plugin: 'eclipse'
            project.apply plugin: 'eclipse-wtp'
        }
    
        def "the eclipse plugin is applied along with eclipseWtp plugin"() {
            when:
            wtpPlugin.apply(project)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 08 10:14:49 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipseWtpPlugin.java

        @Inject
        public EclipseWtpPlugin(Instantiator instantiator) {
            this.instantiator = instantiator;
        }
    
        @Override
        protected String getLifecycleTaskName() {
            return "eclipseWtp";
        }
    
        @Override
        protected void onApply(Project project) {
            project.getPluginManager().apply(EclipsePlugin.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/dsl.xml

                </tr>
                <tr>
                    <td>org.gradle.plugins.ide.eclipse.model.EclipseJdt</td>
                </tr>
                <tr>
                    <td>org.gradle.plugins.ide.eclipse.model.EclipseWtp</td>
                </tr>
                <tr>
                    <td>org.gradle.plugins.ide.eclipse.model.EclipseWtpComponent</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (2)
Back to top