Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 474 for publishing (0.25 sec)

  1. 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)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishDependenciesIntegTest.groovy

                }
    
                dependencies {
                    api('org.test:non-transitive:1.0') { transitive = false }
                    api 'org.test:artifact-only:1.0@jar'
                }
    
                publishing {
                    repositories {
                        maven { url "${mavenRepo.uri}" }
                    }
                    publications {
                        maven(MavenPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 16:29:10 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/CONTRIBUTING.md

    This repository is published from [kubernetes/kubernetes/staging/src/k8s.io/api](https://git.k8s.io/kubernetes/staging/src/k8s.io/api) 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
    - 728 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/CONTRIBUTING.md

    This repository is published from [kubernetes/kubernetes/staging/src/k8s.io/apimachinery](https://git.k8s.io/kubernetes/staging/src/k8s.io/apimachinery) 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
    - 746 bytes
    - Viewed (0)
  5. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishMultiProjectIntegTest.groovy

            def project3 = javaLibrary(ivyRepo.module("changed.org", "changed-module", "changed"))
    
            createBuildScripts("""
    project(":project3") {
        publishing {
            publications.ivy {
                organisation "changed.org"
                module "changed-module"
                revision "changed"
            }
        }
    }
    """)
    
            when:
            run "publish"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

        abstract boolean withDocs()
    
        abstract List<String> features()
    
        def "can publish java-library with no dependencies"() {
            createBuildScripts("""
                publishing {
                    publications {
                        maven(MavenPublication) {
                            from components.java
                        }
                    }
                }
    """)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/CONTRIBUTING.md

    This repository is published from [kubernetes/kubernetes/staging/src/k8s.io/client-go](https://git.k8s.io/kubernetes/staging/src/k8s.io/client-go) by the [kubernetes publishing-bot](https://git.k8s.io/publishing-bot).
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 27 03:43:33 UTC 2019
    - 790 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/fixtures/groovy/lib/build.gradle

    }
    // end::test_fixtures_deps[]
    
    // tag::publishing_test_fixtures[]
    publishing {
        publications {
            mavenJava(MavenPublication) {
                from components.java
            }
        }
    }
    // end::publishing_test_fixtures[]
    
    // tag::disable-test-fixtures-publishing[]
    components.java.withVariantsFromConfiguration(configurations.testFixturesApiElements) { skip() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java/fixtures/kotlin/lib/build.gradle.kts

    }
    // end::test_fixtures_deps[]
    
    // tag::publishing_test_fixtures[]
    publishing {
        publications {
            create<MavenPublication>("mavenJava") {
                from(components["java"])
            }
        }
    }
    // end::publishing_test_fixtures[]
    
    // tag::disable-test-fixtures-publishing[]
    val javaComponent = components["java"] as AdhocComponentWithVariants
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/component/AdhocComponentWithVariants.java

         *
         * @param outgoingConfiguration the configuration corresponding to the variant to use as source of dependencies and artifacts
         * @param action action executed to configure the variant prior to publishing
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 19 14:20:53 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top