Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for extraJar (0.26 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

            given:
            createBuildScripts("""
                task extraJar(type: Jar) {
                    from sourceSets.main.allJava
                    archiveBaseName = "publishTest-extra"
                }
    
                artifacts {
                    implementation extraJar
                    archives extraJar
                    it."default" extraJar
                }
    
                publishing {
                    publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * <pre>
         * project.sync {
         *     from 'source'
         *     into 'dest'
         *     preserve {
         *         include 'extraDir/**'
         *         include 'dir1/**'
         *         exclude 'dir1/extra.txt'
         *     }
         * }
         * </pre>
         *
         * @param action Action to configure the SyncSpec.
         * @since 4.0
    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