Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ant_build (0.18 sec)

  1. platforms/documentation/docs/src/snippets/antMigration/importBuild/kotlin/build.gradle.kts

    // tag::apply-plugin[]
    plugins {
        `java-library`
    }
    // end::apply-plugin[]
    
    // tag::import-build[]
    ant.importBuild("build.xml") { oldTargetName ->
        if (oldTargetName == "build") "ant_build" else oldTargetName  // <1>
    }
    // end::import-build[]
    
    // tag::source-sets[]
    sourceSets {
        main {
            java.setSrcDirs(listOf(ant.properties["src.dir"]))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 771 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/antMigration/importBuild/groovy/build.gradle

    // tag::apply-plugin[]
    plugins {
        id 'java-library'
    }
    // end::apply-plugin[]
    
    // tag::import-build[]
    ant.importBuild('build.xml') { String oldTargetName ->
        return oldTargetName == 'build' ? 'ant_build' : oldTargetName  // <1>
    }
    // end::import-build[]
    
    // tag::source-sets[]
    sourceSets {
        main {
            java {
                srcDirs = [ ant.properties['src.dir'] ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 688 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/ant-task-migration.graffle

     {\fonttbl\f0\fnil\fcharset0 Menlo-Regular;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc\partightenfactor0 \f0\fs24 \cf0 ant_build}Bounds{{162.25, 139.5}, {36.5, 56}}ClassShapedGraphicID.4712611607142857widt.76171875StylefillCol.0g0.0r0.0spacesrgbshadowDraw.0g0.0r0.0space9eaea0911d89d6{296, 258.5}elementLINETOpoint{296, 167.5}Points{296, 258.5}{296, 167.5}StylefillDrawsNOsh...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

     4. Updating task dependencies.
    +
    `compileJava` must depend on `prepare`, `package` must depend on `compileJava` rather than `ant_build`, and `assemble` must depend on `package` rather than the standard Gradle `jar` task.
    
    Applying the plugin is as simple as inserting a  `plugins {}` block at the beginning of the Gradle build script, i.e. before `ant.importBuild()`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. .github/workflows/codeql-analysis.yml

        # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).
        # If this step fails, then you should remove it and run the build manually (see below)
        - name: Autobuild
          uses: github/codeql-action/autobuild@v1
    
        # ℹī¸ Command-line programs to run using the OS shell.
        # 📚 https://git.io/JvXDl
    
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Fri Oct 02 13:24:14 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  6. .github/workflows/codeql-analysis.yml

        # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).
        # If this step fails, then you should remove it and run the build manually (see below)
        #- name: Autobuild
        #  uses: github/codeql-action/autobuild@v1
    
        # ℹī¸ Command-line programs to run using the OS shell.
        # 📚 https://git.io/JvXDl
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 17 21:22:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. .github/workflows/codeql-analysis.yml

        # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).
        # If this step fails, then you should remove it and run the build manually (see below)
        - name: Autobuild
          uses: github/codeql-action/autobuild@v1
    
        # ℹī¸ Command-line programs to run using the OS shell.
        # 📚 https://git.io/JvXDl
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Oct 02 13:22:07 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  8. .github/workflows/codeql-analysis.yml

        - name: Cleanup Gradle Daemons
          run: ./gradlew --stop
          if: ${{ matrix.language == 'java' }}
    
        # ℹī¸ Command-line programs to run using the OS shell.
        # 📚 https://git.io/JvXDl
    
        # ✏ī¸ If the Autobuild fails above, remove it and uncomment the following three lines
        #    and modify them (or add more) to build your code if your project
        #    uses a compiled language
    
        #- run: |
        #   make bootstrap
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        AntBuilder createAntBuilder();
    
        /**
         * <p>Executes the given closure against the <code>AntBuilder</code> for this project. You can use this in your
         * build file to execute ant tasks. The <code>AntBuild</code> is passed to the closure as the closure's
         * delegate. See example in javadoc for {@link #getAnt()}</p>
         *
         * @param configureClosure The closure to execute against the <code>AntBuilder</code>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top