Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 474 for publishing (1.6 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppLibraryPluginTest.groovy

            project.evaluate()
    
            then:
            def publishing = project.publishing
            publishing.publications.size() == 3
    
            def main = publishing.publications.main
            main.groupId == 'my.group'
            main.artifactId == 'mylib'
            main.version == '1.2'
            main.artifacts.size() == 1
    
            def debug = publishing.publications.mainDebug
            debug.groupId == 'my.group'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_platform_plugin.adoc

    ====
    
    [[sec:java_platform_publishing]]
    == Publishing platforms
    
    Publishing Java platforms is done by applying the `maven-publish` plugin and configuring a Maven publication that uses the `javaPlatform` component:
    
    .Publishing as a BOM
    ====
    include::sample[dir="snippets/java-platform/multiproject/kotlin/platform",files="build.gradle.kts[tags=publishing]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ivy-publish/conditional-publishing/groovy/settings.gradle

    rootProject.name = 'maven-conditional-publishing'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 50 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/maven-publish/conditional-publishing/kotlin/settings.gradle.kts

    rootProject.name = "maven-conditional-publishing"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 50 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/developingPlugins/publishingPlugins/kotlin/settings.gradle.kts

    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/snippets/maven-publish/conditional-publishing/groovy/settings.gradle

    rootProject.name = 'maven-conditional-publishing'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 50 bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishArtifactCustomizationIntegTest.groovy

         * @see org.gradle.api.publish.maven.internal.validation.MavenPublicationErrorChecker#checkThatArtifactIsPublishedUnmodified
         */
        def "fails when publishing module metadata for component with modified artifacts"() {
            given:
            createBuildScripts("""
                publications {
                    mavenCustom(MavenPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.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. platforms/documentation/docs/src/samples/groovy/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
    - 64 bytes
    - Viewed (0)
Back to top