Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 159 for publishing (0.4 sec)

  1. staging/README.md

    3. Once the repository has been created in the Kubernetes org,
    update the publishing-bot to publish the staging repository by updating:
    
        - [`rules.yaml`](/staging/publishing/rules.yaml):
        Make sure that the list of dependencies reflects the staging repos in the `Godeps.json` file.
    
        - [`repos.sh`](https://github.com/kubernetes/publishing-bot/blob/master/hack/repos.sh):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. 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)
  3. build-logic/publishing/src/main/kotlin/gradlebuild.publish-defaults.gradle.kts

     */
    
    import gradle.kotlin.dsl.accessors._25bd7e7076749e7e243da5bad7112e92.moduleIdentity
    import gradlebuild.basics.gradleProperty
    import org.gradle.api.publish.maven.MavenPublication
    
    plugins {
        id("publishing")
    }
    
    val artifactoryUrl
        get() = System.getenv("GRADLE_INTERNAL_REPO_URL") ?: ""
    
    val artifactoryUserName
        get() = findProperty("artifactoryUserName") as String?
    
    val artifactoryUserPassword
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:58 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

                apply plugin: 'maven-publish'
    
                group = 'some.group'
                version = '1.2'
                library {
                    baseName = 'test'
                }
                publishing {
                    repositories { maven { url 'repo' } }
                }
    """
            lib.writeToProject(testDirectory)
    
            when:
            run('publish')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/PublicationsCrossVersionSpec.groovy

                id.version == "1.0"
            }
        }
    
        def "publishing.publications based publication"() {
            settingsFile << "rootProject.name = 'test.project'"
            buildFile <<
                    """
    apply plugin: "ivy-publish"
    apply plugin: "maven-publish"
    apply plugin: "java"
    
    version = 1.0
    group = "test.group"
    
    publishing {
        repositories {
            ivy { url uri("ivy-repo") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/ArtifactHandler.java

     *
     * <li>{@link java.io.File}. The information for publishing the artifact is extracted from the file name.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemSupport.java

        /**
         * The Java API of a library, packaged as a JAR only. Must not include classes directories.
         *
         * Available for compatibility with previously published modules.  Should <strong>NOT</strong> be used for new publishing.
         * No plans for permanent removal.
         */
        @Deprecated
        public static final String DEPRECATED_JAVA_API_JARS = "java-api-jars";
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. subprojects/distributions-full/build.gradle.kts

    dependencies {
        coreRuntimeOnly(platform(project(":core-platform")))
    
        agentsRuntimeOnly(project(":instrumentation-agent"))
    
        pluginsRuntimeOnly(platform(project(":distributions-publishing")))
        pluginsRuntimeOnly(platform(project(":distributions-jvm")))
        pluginsRuntimeOnly(platform(project(":distributions-native")))
    
        pluginsRuntimeOnly(project(":plugin-development"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/developingPlugins/pluginWithVariants/groovy/build.gradle

        }
    }
    // end::consume-plugin-variant[]
    
    gradlePlugin {
        plugins.create('greeting') {
            id = 'org.example.greeting'
            implementationClass = 'org.example.GreetingPlugin'
        }
    }
    
    publishing {
        repositories {
            maven { url = layout.buildDirectory.dir('local-repo') }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 01:32:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/developingPlugins/pluginWithVariants/kotlin/build.gradle.kts

        }
    }
    // end::consume-plugin-variant[]
    
    gradlePlugin {
        plugins.create("greeting") {
            id = "org.example.greeting"
            implementationClass = "org.example.GreetingPlugin"
        }
    }
    
    publishing {
        repositories {
            maven { url = uri(layout.buildDirectory.dir("local-repo")) }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 01:32:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top