Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ivyCustom (0.18 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)
Back to top