Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for mavenCustom (0.37 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishArtifactCustomizationIntegTest.groovy

            failure.assertHasCause("Failed to publish publication 'mavenCustom' to repository 'maven'")
            failure.assertHasCause("Invalid publication 'mavenCustom': artifact file is a directory")
        }
    
        def "artifact coordinates are evaluated lazily"() {
            given:
            createBuildScripts("""
                publications.create("mavenCustom", MavenPublication) {
                    artifact customJar
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishDescriptorCustomizationKotlinDslIntegTest.groovy

                publishing {
                    repositories {
                        ivy(url = "${ivyRepo.uri}")
                    }
                    publications {
                        create<IvyPublication>("mavenCustom") {
                            descriptor {
                                status = "custom-status"
                                branch = "custom-branch"
                                license {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishArtifactCustomizationIntegTest.groovy

            createBuildScripts("""
                def customJar = tasks.register("myJar", Jar) {
                    archiveClassifier = 'classy'
                }
                publications {
                    mavenCustom(IvyPublication) {
                        artifact(customJar)
                    }
                }
            """)
    
            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)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationIntegTest.groovy

                version = '1.0'
    
                publishing {
                    repositories {
                        maven { url "${mavenRepo.uri}" }
                    }
                    publications {
                        mavenCustom(MavenPublication) {
                            pom {
                                packaging = "custom-packaging"
                                name = "custom-name"
                                description = "custom-description"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationKotlinDslIntegTest.groovy

                publishing {
                    repositories {
                        maven(url = "${mavenRepo.uri}")
                    }
                    publications {
                        create<MavenPublication>("mavenCustom") {
                            pom {
                                packaging = "custom-packaging"
                                name.set("custom-name")
                                description.set("custom-description")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top