Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 156 for publishing (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    Resolving local hostname is slow, see https://gradle.com/help/gradle-slow-host-name
    
    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/link
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    ==== Enhanced validation of names for `publishing.publications` and `publishing.repositories`
    
    The repository and publication names are used to construct task names for publishing. It was possible to supply a name that would result in an invalid task name.
    Names for publications and repositories are now restricted to `[A-Za-z0-9_\\-.]+`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/dsl.xml

                </tr>
            </table>
        </section>
    
        <section>
            <title>Publishing types</title>
            <para>Listed below are the types used to configure publishing:</para>
            <table>
                <title>Publishing types</title>
                <tr>
                    <td>org.gradle.api.publish.PublishingExtension</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyMultiprojectIntegrationTest.groovy

            failure.assertHasCause("Could not resolve all dependencies for configuration ':conf'.")
            failure.assertHasCause("Git repository at ${repo.url} did not contain a project publishing the specified dependency.")
        }
    
        void assertResolvesTo(String... files) {
            def result = "-Presult=" + files.join(',')
            succeeds("resolve", result)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIvyPublishIntegrationTest.groovy

                )
    
                dependencies {
                    implementation("org:foo:1.0") {
                       because 'version 1.0 is tested'
                    }
                }
    
                publishing {
                    $repositoriesBlock
                    publications {
                        ivy(IvyPublication) {
                            from mainComponent
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/maven/MavenLocalModuleTest.groovy

        def "Sets non-unique snapshots"() {
            when:
            MavenModule mavenModule = mavenLocalModule.withNonUniqueSnapshots()
    
            then:
            mavenModule != null
        }
    
        def "On publishing SHA1 and MD5 files are not created"() {
            given:
            def pomTestFile = tmpDir.createFile("build/test/pom.xml")
    
            when:
            mavenLocalModule.onPublish(pomTestFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    # Gradle Module Metadata 1.0 specification
    
    Consumption of Gradle Module Metadata is automatic. However, publication needs to be enabled explicitly for any Gradle version prior to Gradle 6.
    
    Publishing Gradle Module Metadata can be enabled in the Gradle settings file (`settings.gradle`):
    
    ```
    enableFeaturePreview("GRADLE_METADATA")
    ```
    
    ## Goal
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildPluginDevelopmentIntegrationTest.groovy

        }
    
        private void publishPluginWithDependency() {
            dependency pluginBuild, 'org.test:pluginDependencyA:1.0'
            pluginBuild.buildFile << """
                apply plugin: 'maven-publish'
                publishing {
                    repositories {
                        maven {
                            url '${mavenRepo.uri}'
                        }
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/UnsupportedTypesCodecs.kt

        bind(unsupported<ArtifactResolutionResult>())
        bind(unsupported<ComponentArtifactsResult>())
        bind(unsupported<UnresolvedComponentResult>())
        bind(unsupported<ArtifactResult>())
    
        // Publishing types
        bind(unsupported<Publication>())
    
        // Event dispatching infrastructure types
        bind(unsupported<ListenerBroadcast<*>>())
        bind(unsupported<AbstractBroadcastDispatch<*>>())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/maven/MavenFileModuleTest.groovy

        def "Sets non-unique snapshots"() {
            when:
            boolean uniqueSnapshots = mavenFileModule.withNonUniqueSnapshots().uniqueSnapshots
    
            then:
            !uniqueSnapshots
        }
    
        def "On publishing SHA1 and MD5 files are created"() {
            given:
            TestFile pomTestFile = tmpDir.createFile("build/test/pom.xml")
    
            when:
            mavenFileModule.onPublish(pomTestFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top