Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for content_es (0.08 sec)

  1. platforms/documentation/docs/src/snippets/ivy-publish/distribution/groovy/build.gradle

    // tag::publishing[]
        id 'ivy-publish'
    }
    // end::publishing[]
    
    group = 'org.gradle.sample'
    version = '1.0'
    
    distributions {
        main {
            contents {
                from 'src'
            }
        }
        custom {
            contents {
                from 'src'
            }
        }
    }
    
    // tag::publishing[]
    
    publishing {
        publications {
            myDistribution(IvyPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 659 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/ivy-publish/distribution/kotlin/build.gradle.kts

    // tag::publishing[]
        `ivy-publish`
    }
    // end::publishing[]
    
    group = "org.gradle.sample"
    version = "1.0"
    
    distributions {
        main {
            contents {
                from("src")
            }
        }
        create("custom") {
            contents {
                from("src")
            }
        }
    }
    
    // tag::publishing[]
    
    publishing {
        publications {
            create<IvyPublication>("myDistribution") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 705 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/maven-publish/distribution/kotlin/build.gradle.kts

    // tag::publishing[]
        `maven-publish`
    }
    // end::publishing[]
    
    group = "org.gradle.sample"
    version = "1.0"
    
    distributions {
        main {
            contents {
                from("src")
            }
        }
        create("custom") {
            contents {
                from("src")
            }
        }
    }
    
    // tag::publishing[]
    
    publishing {
        publications {
            create<MavenPublication>("myDistribution") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 705 bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

        /**
         * Creates a new [FileTree] which contains the contents of the given ZIP file.
         *
         * The given `zipPath` path is evaluated as per [file]
         *
         * The returned file tree is lazy, so that it scans for files only when the contents of the file tree are
         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

        /**
         * Creates a new [FileTree] which contains the contents of the given ZIP file.
         *
         * The given `zipPath` path is evaluated as per [file]
         *
         * The returned file tree is lazy, so that it scans for files only when the contents of the file tree are
         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ProgramParserTest.kt

                    ),
                    Program.Script(expectedScriptSource)
                )
            )
        }
    
        private
        fun assertEmptyProgram(contents: String, programTarget: ProgramTarget = ProgramTarget.Project) {
            assertProgramOf(programSourceWith(contents), Program.Empty, programTarget = programTarget)
        }
    }
    
    
    internal
    fun assertProgramOf(
        source: ProgramSource,
        expected: Program,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/valueProviders/fileContentsDo/kotlin/settings.gradle.kts

    rootProject.name = "file-contents-do"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/base/distribution/kotlin/build.gradle.kts

    plugins {
        distribution
    }
    // end::use-plugin[]
    
    // tag::configure-distribution[]
    distributions {
        main {
            distributionBaseName = "someName"
            distributionClassifier = "classifier"
            contents {
                from("src/readme")
            }
        }
    }
    // end::configure-distribution[]
    
    // tag::custom-distribution[]
    distributions {
        create("custom") {
            // configure custom distribution
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 470 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/maven-publish/publish-artifact/groovy/build.gradle

        type 'rpm'
        builtBy 'rpm'
    }
    // end::custom-artifact[]
    
    tasks.register('rpm') {
        outputs.file rpmFile
        doLast {
            // produce real RPM here
            rpmFile.get().asFile << 'file contents'
        }
    }
    
    // tag::custom-artifact-publication[]
    publishing {
        publications {
            maven(MavenPublication) {
                artifact rpmArtifact
            }
        }
    // end::custom-artifact-publication[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 933 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/application/kotlin/build.gradle.kts

        outputs.dir(docs)
        doLast {
            docs.get().asFile.mkdirs()
            docs.get().file("readme.txt").asFile.writeText("Read me!")
        }
    }
    
    distributions {
        main {
            contents {
                from(createDocs) {
                    into("docs")
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top