Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 474 for publishing (0.25 sec)

  1. platforms/documentation/docs/src/snippets/java-feature-variant/producer-separate-sourceset/groovy/build.gradle

    dependencies {
        mongodbSupportImplementation 'org.mongodb:mongodb-driver-sync:3.9.1'
    }
    // end::variant_dependencies[]
    
    // tag::publishing[]
    publishing {
        publications {
            myLibrary(MavenPublication) {
                from components.java
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 05:16:22 UTC 2023
    - 946 bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishJavaIntegTest.groovy

            createBuildScripts("""
    
                ${mavenCentralRepository()}
    
                dependencies {
                    implementation "commons-collections:commons-collections:1.+"
                }
    
                publishing {
                    publications {
                        maven(MavenPublication) {
                            from components.java
                            versionMapping {
                                allVariants {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/IvyPluginPublishingPlugin.java

                    IvyPublication mainPublication = addMainPublication(publishing, mainComponent);
                    addMarkerPublications(mainPublication, publishing, pluginDevelopment);
                }
            });
        }
    
        private IvyPublication addMainPublication(PublishingExtension publishing, SoftwareComponent mainComponent) {
            IvyPublication publication = publishing.getPublications().maybeCreate("pluginIvy", IvyPublication.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenGradleModuleMetadataPublishIntegrationTest.groovy

                    implementation project(':b')
                }
    
                publishing {
                    publications {
                        maven(MavenPublication) {
                            from comp
                        }
                    }
                }
    
                project(':a') {
                    publishing {
                        publications {
                            maven(MavenPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishWarProjectIntegTest.groovy

                version = '1.9'
    
                publishing {
                    repositories {
                        maven { url "${mavenRepo.uri}" }
                    }
                }
            }
    
            project(":projectWeb") {
                dependencies {
                    implementation project(":depProject1")
                    implementation project(":depProject2")
                }
    
                publishing {
                    publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/PluginDeclaration.java

         *
         * <p>The display name is used when publishing this plugin to repositories
         * that support human-readable artifact names.
         *
         * @since 4.10
         */
        public String getDisplayName() {
            return displayName;
        }
    
        /**
         * Sets the display name for this plugin declaration.
         *
         * <p>The display name is used when publishing this plugin to repositories
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/CONTRIBUTING.md

    This repository is published from [kubernetes/kubernetes/staging/src/k8s.io/cli-runtime](https://git.k8s.io/kubernetes/staging/src/k8s.io/cli-runtime) by the [kubernetes publishing-bot](https://git.k8s.io/publishing-bot).
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 15 14:13:07 UTC 2019
    - 744 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/CONTRIBUTING.md

    This repository is published from [kubernetes/kubernetes/staging/src/k8s.io/apiextensions-apiserver](https://git.k8s.io/kubernetes/staging/src/k8s.io/apiextensions-apiserver) by the [kubernetes publishing-bot](https://git.k8s.io/publishing-bot).
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 02:28:04 UTC 2019
    - 768 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/CONTRIBUTING.md

    This repository is published from [kubernetes/kubernetes/staging/src/k8s.io/apiserver](https://git.k8s.io/kubernetes/staging/src/k8s.io/apiserver) by the [kubernetes publishing-bot](https://git.k8s.io/publishing-bot).
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 15 14:13:07 UTC 2019
    - 740 bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

                    id("java-library")
                    id("maven-publish")
                }
                publishing {
                    publications {
                        maven(MavenPublication) {
                            from(components.java)
                        }
                    }
                }
                publishing.publications.maven.artifacts // Realize publication component
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top