Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 76 for Jdt (0.06 sec)

  1. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderTest.groovy

        }
    
        def "#type language level derived from eclipse jdt overrules java plugin extension configuration"() {
            given:
            def modelBuilder = createEclipseModelBuilder()
            project.plugins.apply(JavaPlugin)
            project.plugins.apply(EclipsePlugin)
            project.java."$compatibilityProperty" = "1.2"
            project.eclipse.jdt."$compatibilityProperty" = "1.3"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ProjectTest.groovy

        def static final CUSTOM_REFERENCED_PROJECTS = ['refProject'] as LinkedHashSet
        def static final CUSTOM_BUILD_COMMANDS = [new BuildCommand('org.eclipse.jdt.core.scalabuilder', [climate: 'cold'])]
        def static final CUSTOM_NATURES = ['org.eclipse.jdt.core.scalanature']
        def static final CUSTOM_LINKED_RESOURCES = [new Link('somename', 'sometype', 'somelocation', '')] as Set
        def static final CUSTOM_RESOURCE_FILTERS = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/commonClasspath.xml

    			<attribute name="gradle_used_by_scope" value="test"/>
    			<attribute name="test" value="true"/>
    		</attributes>
    	</classpathentry>
    	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7/"/>
    	<classpathentry kind="src" path="/api">
    		<attributes>
    			<attribute name="without_test_code" value="true"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/resources/org/gradle/api/tasks/ide/eclipse/expectedClasspathFile.txt

      <classpathentry kind="output" path="bin"/>
      <classpathentry kind="src" path="src/test/java" output="testbin"/>
      <classpathentry kind="src" path="src/test/resources" output="testbin"/>
      <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
      <classpathentry kind="src" path="/test" combineaccessrules="false"/>
      <classpathentry kind="lib" path="lib/a.jar"/>
      <classpathentry kind="lib" path="lib/b.jar"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 05 04:16:54 UTC 2011
    - 607 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/buildship.gradle

      <buildSpec>
        <buildCommand><name>org.eclipse.jdt.core.javabuilder</name><arguments/></buildCommand>
        <buildCommand><name>org.eclipse.pde.ManifestBuilder</name><arguments/></buildCommand>
        <buildCommand><name>org.eclipse.pde.SchemaBuilder</name><arguments/></buildCommand>
      </buildSpec>
      <natures>
        <nature>org.eclipse.pde.PluginNature</nature>
        <nature>org.eclipse.jdt.core.javanature</nature>
      </natures>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/build.gradle

            configure(p) {
                if (p.hasProperty('eclipseClasspath')) {
                    eclipse {
                        classpath {
                            downloadJavadoc = true
                        }
                        jdt.javaRuntimeName = "JavaSE-1.7"
                    }
                }
                cleanEclipse.doLast {
                    assert !file(".classpath").exists()
                    assert !file(".project").exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ContainerTest.groovy

        final static String XML_TEXT = '''
                    <classpathentry exported="true" kind="con" path="somePath">
                        <attributes>
                            <attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="mynative"/>
                        </attributes>
                        <accessrules>
                            <accessrule kind="nonaccessible" pattern="secret**"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ProjectDependencyTest.groovy

        final static String XML_TEXT = '''
                    <classpathentry kind="src" path="/test2" exported="true">
                        <attributes>
                            <attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="mynative"/>
                        </attributes>
                        <accessrules>
                            <accessrule kind="nonaccessible" pattern="secret**"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseProject.java

         * Some natures are automatically added to the result based on the Gradle plugins applied on the project.
         * For example, if the project applies the 'java' plugin the result will contain the
         * {@code "org.eclipse.jdt.core.javanature"} entry. Note, that the exact list of automatically added
         * natures is not part of the API and can vary between Gradle releases.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/LibraryTest.groovy

                        <classpathentry exported="true" kind="lib" path="/ant.jar" sourcepath="/ant-src.jar">
                            <attributes>
                                <attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="mynative"/>
                                <attribute name="javadoc_location" value="jar:%FILE_URI%!/"/>
                            </attributes>
                            <accessrules>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top