Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for wtpComponent (1.78 sec)

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

     *         beforeMerged { wtpComponent ->
     *           //tinker with {@link WtpComponent} here
     *         }
     *
     *         //closure executed after wtp component file content is loaded from existing file
     *         //and after gradle build information is merged
     *         whenMerged { wtpComponent ->
     *           //you can tinker with the {@link WtpComponent} here
     *         }
     *       }
     *     }
    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/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

      * `beforeMerged { link:{javadocPath}/org/gradle/plugins/ide/eclipse/model/WtpComponent.html[WtpComponent] arg -> ... }`
      * `whenMerged { link:{javadocPath}/org/gradle/plugins/ide/eclipse/model/WtpComponent.html[WtpComponent] arg -> ... }`
      * `withXml { link:{javadocPath}/org/gradle/api/XmlProvider.html[XmlProvider] arg -> ... }`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-not-extends-internal-types.txt

    Class <org.gradle.plugins.ide.eclipse.model.WtpComponent> extends/implements org.gradle.plugins.ide.internal.generator.XmlPersistableConfigurationObject that is Gradle Internal API in (WtpComponent.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

    }
    """
            //when
            executer.withTasks('eclipse').run()
    
            //then
            def implComponent = wtpComponent('impl')
            assert implComponent.deployName == 'cool-impl'
            assert implComponent.project('cool-contrib')
    
            def contribComponent = wtpComponent('contrib')
            assert contribComponent.deployName == 'cool-contrib'
        }
    
        @Test
        @Issue("GRADLE-1881")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top