Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for GenerateEclipseClasspath (0.51 sec)

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

     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateEclipseClasspath extends XmlGeneratorTask<Classpath> {
    
        private EclipseClasspath classpath;
    
        public GenerateEclipseClasspath() {
            getXmlTransformer().setIndentation("\t");
        }
    
        @Inject
        public GenerateEclipseClasspath(EclipseClasspath classpath) {
            this.classpath = classpath;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.GenerateEclipseClasspath.xml

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

    class GenerateEclipseClasspathTest extends AbstractSpockTaskTest {
    
        private GenerateEclipseClasspath eclipseClasspath
    
        ConventionTask getTask() {
            return eclipseClasspath
        }
    
        def setup() {
            def project = Mock(Project)
            project.getObjects() >> TestUtil.objectFactory()
            eclipseClasspath = createTask(GenerateEclipseClasspath.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/AbstractTaskSubclassingBinaryCompatibilityCrossVersionSpec.groovy

    import org.gradle.jvm.application.tasks.CreateStartScripts
    import org.gradle.jvm.tasks.Jar
    import org.gradle.plugins.ear.Ear
    import org.gradle.plugins.ide.eclipse.GenerateEclipseClasspath
    import org.gradle.plugins.ide.eclipse.GenerateEclipseJdt
    import org.gradle.plugins.ide.eclipse.GenerateEclipseProject
    import org.gradle.plugins.ide.eclipse.GenerateEclipseWtpComponent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/resources/org/gradle/initialization/converted-types.txt

    org.gradle.plugins.ear.EarPluginConvention
    org.gradle.plugins.ide.api.FileContentMerger
    org.gradle.plugins.ide.eclipse.EclipsePlugin
    org.gradle.plugins.ide.eclipse.EclipseWtpPlugin
    org.gradle.plugins.ide.eclipse.GenerateEclipseClasspath
    org.gradle.plugins.ide.eclipse.GenerateEclipseJdt
    org.gradle.plugins.ide.eclipse.GenerateEclipseProject
    org.gradle.plugins.ide.eclipse.GenerateEclipseWtpComponent
    org.gradle.plugins.ide.eclipse.GenerateEclipseWtpFacet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 08 10:41:04 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/EclipsePluginTest.groovy

            def classpath = project.eclipse.classpath
            def classpathTask = project.tasks.eclipseClasspath
    
            assert classpathTask instanceof GenerateEclipseClasspath
            assert classpathTask.classpath == classpath
            assert classpathTask.outputFile == project.file('.classpath')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top