Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for javabuilder (0.17 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r214/ToolingApEclipseModelNaturesAndBuildCommandsCrossVersionSpec.groovy

        static final def JAVA_BUILD_COMMANDS = ['org.eclipse.jdt.core.javabuilder']
        static final def WTP_BUILD_COMMANDS = ['org.eclipse.wst.common.project.facet.core.builder', 'org.eclipse.wst.validation.validationbuilder']
    
        def "Eclipse wtp natures are added to web projects"() {
            given:
    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

            """<?xml version="1.0" encoding="UTF-8"?>
    <projectDescription>
      <name>org.gradle.toolingapi</name><comment/><projects/>
      <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>
    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

        void assertHasNatures(String... natures) {
            assert this.project.natures.nature*.text() == natures as List
        }
    
        void assertHasJavaFacetBuilders() {
            assertHasBuilders("org.eclipse.jdt.core.javabuilder",
                "org.eclipse.wst.common.project.facet.core.builder",
                "org.eclipse.wst.validation.validationbuilder"
            )
        }
    
        void assertHasBuilders(String... builders) {
    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

         * For example, if the project applies the 'java' plugin the result will contain the
         * {@code "org.eclipse.jdt.core.javabuilder"} build command. Note, that the exact list of automatically
         * added build commands 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)
  5. src/cmd/vendor/rsc.io/markdown/para.go

    	// if s.bullet == 0 {
    	// 	buf.WriteString(s.prefix)
    	// }
    	b.Text.printMarkdown(buf, s)
    }
    
    type paraBuilder struct {
    	text  []string
    	table *tableBuilder
    }
    
    func (b *paraBuilder) extend(p *parseState, s line) (line, bool) {
    	return s, false
    }
    
    func (b *paraBuilder) build(p buildState) Block {
    	if b.table != nil {
    		return b.table.build(p)
    	}
    
    	s := strings.Join(b.text, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/util/JarUtils.groovy

         * or specifying the lack thereof ({@link JarBuilder#withoutManifest()}.
         */
        static class JarBuilder {
            /**
             * @see org.gradle.api.internal.file.archive.ZipCopyAction#CONSTANT_TIME_FOR_ZIP_ENTRIES
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 07 19:17:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top