Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for javanature (0.2 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r49/ToolingApiEclipseModelProjectCrossVersionSpec.groovy

            """
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
    
            then:
            project.projectNatures.size() == 1
            project.projectNatures[0].id.contains('javanature')
            project.buildCommands.size() == 1
            project.buildCommands[0].name.contains('javabuilder')
        }
    
        def "EclipseProject attributes defined"() {
            buildFile <<
            """apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/buildship.gradle

        <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>
    </projectDescription>
    """
        }
    
        private String getDotClasspathText(String jarName) {
            """<?xml version="1.0" encoding="UTF-8"?>
    <classpath>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectFixture.groovy

            } finally {
                XMLUnit.setIgnoreWhitespace(xmlUnitIgnoreWhitespaceOriginal)
            }
        }
    
        void assertHasJavaFacetNatures() {
            assertHasNatures("org.eclipse.jdt.core.javanature",
                "org.eclipse.wst.common.project.facet.core.nature",
                "org.eclipse.wst.common.modulecore.ModuleCoreNature",
                "org.eclipse.jem.workbench.JavaEMFNature")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. 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>
         * The result can be customized via the 'eclipse' plugin configuration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/UrlComponentEncodingTesterJvm.kt

        component: Component,
      ) {
        val encoded = encoding.encode(codePoint)
        val httpUrl = component.urlString(encoded).toHttpUrl()
        val javaNetUrl = httpUrl.toUrl()
        if (javaNetUrl.toString() != javaNetUrl.toString()) {
          fail("Encoding $component $codePoint using $encoding")
        }
      }
    
      private fun testFromUrl(
        codePoint: Int,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top