Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for eclipseWtp (0.19 sec)

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

     *     }
     *
     *     facet {
     *       //for examples see docs for {@link EclipseWtpFacet}
     *     }
     *   }
     * }
     *
     * </pre>
     */
    public abstract class EclipseWtp {
        private EclipseWtpComponent component;
        private EclipseWtpFacet facet;
    
        /**
         * Injects and returns an instance of {@link ObjectFactory}.
         *
         * @since 4.9
         */
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.model.EclipseWtp.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseModel.java

        /**
         * Configures eclipse wtp information
         * <p>
         * For examples see docs for {@link EclipseWtp}
         */
        public EclipseWtp getWtp() {
            if (wtp == null) {
                wtp = getObjectFactory().newInstance(EclipseWtp.class);
            }
            return wtp;
        }
    
        public void setWtp(EclipseWtp wtp) {
            this.wtp = wtp;
        }
    
        /**
         * Configures eclipse project information
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. 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)
  5. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/EclipseModelTest.groovy

            def component = TestUtil.newInstance(EclipseWtpComponent, project, xmlMerger)
            model.wtp = TestUtil.newInstance(EclipseWtp)
    
            when: "configure wtp"
            model.wtp({ wtp ->
                wtp.component = component
                wtp.facet = facet
            } as Action<EclipseWtp>)
    
            then:
            model.wtp.component == component
            model.wtp.facet == facet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/WtpClasspathAttributeSupport.java

            isUtilityProject = !project.getPlugins().hasPlugin(WarPlugin.class) && !project.getPlugins().hasPlugin(EarPlugin.class);
            EclipseWtp eclipseWtp = model.getWtp();
            EclipseWtpComponent wtpComponent = eclipseWtp.getComponent();
            libDirName = wtpComponent.getLibDeployPath();
            Set<Configuration> rootConfigs = wtpComponent.getRootConfigurations();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/main/resources/org/gradle/initialization/converted-types.txt

    org.gradle.plugins.ide.eclipse.model.EclipseClasspath
    org.gradle.plugins.ide.eclipse.model.EclipseJdt
    org.gradle.plugins.ide.eclipse.model.EclipseModel
    org.gradle.plugins.ide.eclipse.model.EclipseProject
    org.gradle.plugins.ide.eclipse.model.EclipseWtp
    org.gradle.plugins.ide.eclipse.model.EclipseWtpComponent
    org.gradle.plugins.ide.eclipse.model.EclipseWtpFacet
    org.gradle.plugins.ide.eclipse.model.Facet
    org.gradle.plugins.ide.eclipse.model.Facet$FacetType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 08 10:41:04 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  9. 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)
  10. 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 (0)
Back to top