Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ivyCustom (0.09 sec)

  1. platforms/documentation/docs/src/snippets/ivy-publish/descriptor-customization/kotlin/build.gradle.kts

    plugins {
        `ivy-publish`
    }
    
    group = "org.gradle.sample"
    version = "1.0"
    
    publishing {
    // tag::customize-descriptor[]
    // tag::versions-resolved[]
        publications {
            create<IvyPublication>("ivyCustom") {
                // end::versions-resolved[]
                descriptor {
                    license {
                        name = "The Apache License, Version 2.0"
                        url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/ivy-publish/descriptor-customization/groovy/build.gradle

    plugins {
        id 'ivy-publish'
    }
    
    group = 'org.gradle.sample'
    version = '1.0'
    
    publishing {
    // tag::customize-descriptor[]
    // tag::versions-resolved[]
        publications {
            ivyCustom(IvyPublication) {
    // end::versions-resolved[]
                descriptor {
                    license {
                        name = 'The Apache License, Version 2.0'
                        url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishArtifactCustomizationIntegTest.groovy

      - Anything that can be converted to a file, as per Project.file()""")
        }
    
        def "artifact coordinates are evaluated lazily"() {
            given:
            createBuildScripts("""
                publications.create("ivyCustom", IvyPublication) {
                    artifact customJar
                }
            """, "version = 2.0")
            when:
            succeeds 'publish'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.3K bytes
    - Viewed (0)
Back to top