Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for publishing (0.34 sec)

  1. platforms/documentation/docs/src/samples/groovy/library-publishing/groovy/my-library/build.gradle

        mavenCentral()
    }
    
    dependencies {
        implementation 'org.codehaus.groovy:groovy-all:3.0.21'
    }
    
    publishing {
        publications {
            library(MavenPublication) {
                from components.java
            }
        }
        repositories {
            maven {
                url = layout.buildDirectory.dir("publishing-repository")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:34 UTC 2024
    - 452 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/groovy/library-publishing/kotlin/my-library/build.gradle.kts

    }
    
    dependencies {
        implementation("org.codehaus.groovy:groovy-all:3.0.21")
    }
    
    publishing {
        publications {
            create<MavenPublication>("library") {
                from(components["java"])
            }
        }
        repositories {
            maven {
                url = uri(layout.buildDirectory.dir("publishing-repository"))
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:34 UTC 2024
    - 464 bytes
    - Viewed (0)
  3. 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)
  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. 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)
  6. 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)
  7. 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)
  8. staging/README.md

    3. Once the repository has been created in the Kubernetes org,
    update the publishing-bot to publish the staging repository by updating:
    
        - [`rules.yaml`](/staging/publishing/rules.yaml):
        Make sure that the list of dependencies reflects the staging repos in the `Godeps.json` file.
    
        - [`repos.sh`](https://github.com/kubernetes/publishing-bot/blob/master/hack/repos.sh):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTopics.kt

     *  - [KotlinCodeFragmentContextModificationListener]
     *
     * Care needs to be taken with the lack of interplay between different types of topics: Publishing a global modification event, for example,
     * does not imply the corresponding module-level event. Similarly, publishing a module state modification event does not imply out-of-block
     * modification.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. build-logic/publishing/src/main/kotlin/gradlebuild.publish-defaults.gradle.kts

     */
    
    import gradle.kotlin.dsl.accessors._25bd7e7076749e7e243da5bad7112e92.moduleIdentity
    import gradlebuild.basics.gradleProperty
    import org.gradle.api.publish.maven.MavenPublication
    
    plugins {
        id("publishing")
    }
    
    val artifactoryUrl
        get() = System.getenv("GRADLE_INTERNAL_REPO_URL") ?: ""
    
    val artifactoryUserName
        get() = findProperty("artifactoryUserName") as String?
    
    val artifactoryUserPassword
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:58 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top