Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for GenerateEclipseClasspath (0.41 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. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipsePlugin.java

                    final TaskProvider<GenerateEclipseClasspath> task = project.getTasks().register(ECLIPSE_CP_TASK_NAME, GenerateEclipseClasspath.class, model.getClasspath());
                    task.configure(new Action<GenerateEclipseClasspath>() {
                        @Override
                        public void execute(final GenerateEclipseClasspath task) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    +
    Generates the `.project` file.
    
    `eclipseClasspath` — link:{groovyDslPath}/org.gradle.plugins.ide.eclipse.GenerateEclipseClasspath.html[GenerateEclipseClasspath]::
    +
    Generates the `.classpath` file.
    
    `eclipseJdt` — link:{groovyDslPath}/org.gradle.plugins.ide.eclipse.GenerateEclipseJdt.html[GenerateEclipseJdt]::
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseClasspath.java

    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * The build path settings for the generated Eclipse project. Used by the
     * {@link org.gradle.plugins.ide.eclipse.GenerateEclipseClasspath} task to generate an Eclipse .classpath file.
     * <p>
     * The following example demonstrates the various configuration options.
     * Keep in mind that all properties have sensible defaults; only configure them explicitly
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.plugins.ide.eclipse.GenerateEclipseClasspath.getClasspath()> does not have raw return type assignable to org.gradle.api.provider.Property in (GenerateEclipseClasspath.java:0)
    Method <org.gradle.plugins.ide.eclipse.GenerateEclipseClasspath.getXmlTransformer()> does not have raw return type assignable to org.gradle.api.provider.Provider in (GenerateEclipseClasspath.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top