Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 474 for publishing (0.31 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-versionCatalogPlugin/groovy/build.gradle

            library('my-lib', 'com.mycompany:mylib:1.2')
        }
    }
    // end::catalog_spec[]
    
    // tag::catalog_publish[]
    publishing {
        publications {
            maven(MavenPublication) {
                from components.versionCatalog
            }
        }
    }
    // end::catalog_publish[]
    
    publishing {
        repositories {
            maven {
                url "${buildDir}/repo"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformCatalog/groovy/catalog/build.gradle

            library('myGroovy', 'org.codehaus.groovy:groovy:3.0.5')
        }
    }
    
    group = "com.mycompany"
    version = "1.0"
    
    publishing {
        publications {
            maven(MavenPublication) {
                from components.versionCatalog
            }
        }
    }
    
    publishing {
        repositories {
            maven {
                url "${projectDir}/repo"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. 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)
  4. platforms/documentation/docs/src/snippets/plugins/readme.xml

            </listitem>
            <listitem>
                <para>
                    The <filename>publishing</filename> directory contains a complete example of the modern publishing plugins working with the java-gradle-plugin
                    to produce two plugins shipped in the same jar and being published to both an ivy and maven repository.
                </para>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishCustomComponentIntegTest.groovy

        def publishedModule = mavenRepo.module("org.gradle.test", "publishTest", "1.9")
    
        def "cannot publish custom component with no usages or variants"() {
            createBuildScripts("""
                publishing {
                    publications {
                        maven(MavenPublication) {
                            from new MySoftwareComponent()
                        }
                    }
                }
    """)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. subprojects/distributions-full/src/toplevel/README

    Gradle is a build tool with a focus on build automation and support for multi-language development. If you are building, testing, publishing, and deploying software on any platform, Gradle offers a flexible model that can support the entire development lifecycle from compiling and packaging code to publishing web sites. Gradle has been designed to support build automation across multiple languages and platforms including Java, Scala, Android, C/C++, and Groovy, and is closely integrated with development...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 15 06:58:16 UTC 2020
    - 976 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-versionCatalogPlugin/kotlin/build.gradle.kts

            library("my-lib", "com.mycompany:mylib:1.2")
        }
    }
    // end::catalog_spec[]
    
    // tag::catalog_publish[]
    publishing {
        publications {
            create<MavenPublication>("maven") {
                from(components["versionCatalog"])
            }
        }
    }
    // end::catalog_publish[]
    
    publishing {
        repositories {
            maven {
                url = uri("${buildDir}/repo")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/common-summary.adoc.template

    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    
    Publishing a build scan to scans.gradle.com requires accepting the Gradle Terms of Service defined at https://gradle.com/terms-of-service.
    Do you accept these terms? [yes, no] yes
    
    Gradle Terms of Service accepted.
    
    Publishing build scan...
    https://gradle.com/s/5u4w3gxeurtd2
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 997 bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationIntegTest.groovy

        }
    
        def "can generate pom file without publishing"() {
            given:
            settingsFile << "rootProject.name = 'generatePom'"
            buildFile << """
                apply plugin: 'maven-publish'
    
                group = 'org.gradle.test'
                version = '1.0'
    
                publishing {
                    repositories {
                        maven { url "${mavenRepo.uri}" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  10. 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)
Back to top