Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 474 for publishing (0.37 sec)

  1. platforms/documentation/docs/src/samples/java/library-publishing/kotlin/settings.gradle.kts

    rootProject.name = "library-publishing"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 63 bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishVersionRangeIntegTest.groovy

                apply plugin: 'ivy-publish'
                apply plugin: 'java-library'
    
                group = 'org.gradle.test'
                version = '1.9'
    
                ${emptyJavaClasspath()}
    
                publishing {
                    repositories {
                        ivy { url "${ivyRepo.uri}" }
                    }
                    publications {
                        ivy(IvyPublication) {
                            from components.java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. build-logic/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts

    configurations.all {
        withDependencies {
            remove(project.dependencies.gradleApi())
            remove(project.dependencies.gradleTestKit())
        }
    }
    
    publishing.publications.withType<MavenPublication>().configureEach {
        if (name == "pluginMaven") {
            groupId = project.group.toString()
            artifactId = moduleIdentity.baseName.get()
        }
        pom {
            licenses {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/developingPlugins/publishingPlugins/groovy/settings.gradle

    rootProject.name = 'publishing-plugins'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/java/library-publishing/groovy/settings.gradle

    rootProject.name = 'library-publishing'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 62 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/plugins.xml

            <extends targetClass="org.gradle.api.tasks.SourceSet" id="groovy" extensionClass="org.gradle.api.tasks.GroovySourceDirectorySet"/>
        </plugin>
        <plugin id="publishing" description="Publishing Plugin">
            <extends targetClass="org.gradle.api.Project" id="publishing" extensionClass="org.gradle.api.publish.PublishingExtension"/>
        </plugin>
        <plugin id="scala" description="Scala Plugin">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/ivy-publish/java-multi-project/kotlin/project2/build.gradle.kts

    plugins {
        id("myproject.publishing-conventions")
    }
    
    description = "The second project"
    
    dependencies {
        implementation("commons-collections:commons-collections:3.2.2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 177 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