Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 69 for publishing (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    include::sample[dir="snippets/plugins/customPlugin/groovy/java-gradle-plugin",files="build.gradle[tags=use-and-configure-plugin]"]
    ====
    
    For more on publishing plugins, see <<publishing_gradle_plugins.adoc#plugin-publishing-plugin,Publishing Plugins>>.
    
    ==  Project vs Settings vs Init plugins
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolver.java

                // TODO: Deprecate this behavior
    //            String message = "Cannot publish dependency on " + project.getDisplayName() + " since it does not declare any publications. " +
    //                "Publishing a component that depends on another project without publications";
    //            DeprecationLogger.deprecate(message)
    //                .withAdvice("Ensure " + project.getDisplayName() + " declares at least one publication.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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 (2)
  6. 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)
  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/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    [[migant:ivy_publishing]]
    == Publishing artifacts
    
    Projects that use Ivy to manage dependencies often also use it for publishing JARs and other artifacts to repositories.
    If you're migrating such a build, then you'll be glad to know that Gradle has built-in support for publishing artifacts to Ivy-compatible repositories.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

            buildFile << """
                apply plugin: 'java'
                apply plugin: 'maven-publish'
                version = '1'
                group = 'group'
    
                publishing {
                    repositories {
                        maven { url "${mavenHttpRepo.uri}" }
                    }
                    publications {
                        maven(MavenPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top