Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 159 for publishing (0.25 sec)

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

                    id("java-library")
                    id("ivy-publish")
                }
                publishing {
                    publications {
                        ivy(IvyPublication) {
                            from(components.java)
                        }
                    }
                }
                publishing.publications.ivy.artifacts // Realize publication component
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. platforms/software/signing/build.gradle.kts

        testRuntimeOnly(testFixtures(project(":security")))
        testRuntimeOnly(project(":distributions-publishing")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
    
        integTestDistributionRuntimeOnly(project(":distributions-publishing"))
    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API
    }
    
    packageCycles {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

                repositories {
                    // use for resolving
                    maven { url "${mavenRepo.uri}" }
                }
    
                publishing {
                    repositories {
                        // used for publishing
                        maven { url "${mavenRepo.uri}" }
                    }
                }
    
                group = 'org.gradle.test'
                version = '1.9'
    
    $append
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

    import java.time.Year
    
    plugins {
        id("gradlebuild.module-identity")
        id("gradlebuild.publish-defaults")
        id("signing")
        `maven-publish`
    }
    
    configureJavadocVariant()
    
    publishing {
        publications {
            create<MavenPublication>("gradleDistribution") {
                configureGradleModulePublication()
            }
        }
    
        plugins.withId("gradlebuild.shaded-jar") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. hack/verify-imports.sh

    # listed in `staging/publishing/import-restrictions.yaml`.
    # Usage: `hack/verify-imports.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    GOPROXY=off go install ./cmd/importverifier
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/NativeAlignmentWithJavaPlatformResolveIntegrationTest.groovy

                        api(project(":core")) { because "platform alignment" }
                        api(project(":lib")) { because "platform alignment" }
                    }
                }
    
                publishing {
                    publications {
                        maven(MavenPublication) {
                            from components.javaPlatform
                        }
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishSnapshotIntegTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.publish.maven
    
    import org.gradle.integtests.fixtures.publish.maven.AbstractMavenPublishIntegTest
    
    /**
     * Tests publishing of maven snapshots
     */
    class MavenPublishSnapshotIntegTest extends AbstractMavenPublishIntegTest {
        def "can publish snapshot versions"() {
            settingsFile << 'rootProject.name = "snapshotPublish"'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:20:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

    ------------------------------------------------------------
    
    ...
    
    Publishing tasks
    ----------------
    publish - Publishes all publications produced by this project.
    publishToMavenLocal - Publishes all Maven publications produced by this project to the local Maven cache.
    ----
    
    A new set of publishing tasks are now available called `publish`, and `publishToMavenLocal`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. platforms/software/maven/build.gradle.kts

        crossVersionTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    strictCompile {
        ignoreDeprecations() // old 'maven' publishing mechanism: types are deprecated
        ignoreRawTypes() // old 'maven' publishing mechanism: raw types used in public API
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/api/publication/maven/internal/**")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. subprojects/public-api/build.gradle.kts

        externalApi(libs.slf4jApi)
        // We only need this because of AntTarget :o
        externalApi(libs.ant)
    }
    
    val testRepoLocation = layout.buildDirectory.dir("repos/test")
    
    publishing {
        publications {
            create<MavenPublication>("maven") {
                artifactId = moduleIdentity.baseName.get()
    
                from(components["gradleApi"])
    
                versionMapping {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 13:15:08 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top