Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 98 for publishTest (0.37 sec)

  1. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/with-nondefault-status.module

    {
        "formatVersion": "1.0",
        "component": {
            "group": "org.gradle.test",
            "module": "publishTest",
            "version": "1.9",
            "attributes": {
                "org.gradle.status": "milestone"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 231 bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishJavaPlatformIntegTest.groovy

    import org.gradle.test.fixtures.maven.MavenJavaPlatformModule
    
    class MavenPublishJavaPlatformIntegTest extends AbstractMavenPublishIntegTest {
        MavenJavaPlatformModule javaPlatform = javaPlatform(mavenRepo.module("org.gradle.test", "publishTest", "1.9"))
    
        def "can publish java-platform with no dependencies"() {
            createBuildScripts("""
                publishing {
                    publications {
                        maven(MavenPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModificationService.kt

     */
    public abstract class KotlinGlobalModificationService : KotlinPlatformComponent {
        /**
         * Publishes an event of global modification of the module state of all [KtModule]s.
         */
        @TestOnly
        public abstract fun publishGlobalModuleStateModification()
    
        /**
         * Publishes an event of global modification of the module state of all source [KtModule]s.
         */
        @TestOnly
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishExternalVariantIntegrationTest.groovy

            e.message.contains("Could not find artifact org.jetbrains.kotlinx:kotlinx-coroutines-core-iosx64:jar:1.7.2")
        }
    
        def "publishes resolved child coordinates for multi-coordinate project dependency"() {
            given:
            publishes(multiCoordinateComponent {
                compilation("first")
                compilation("second")
            })
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenModule.groovy

    interface MavenModule extends Module {
        /**
         * Publishes the pom.xml plus main artifact, plus any additional artifacts for this module. Publishes only those artifacts whose content has changed since the last call to {@code # publish ( )}.
         *
         * @return this
         */
        MavenModule publish()
    
        /**
         * Publishes the pom.xml only
         */
        MavenModule publishPom()
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/maven-publish/conditional-publishing/kotlin/build.gradle.kts

        group = "publishing"
        description = "Publishes all Maven publications to the external Maven repository."
        dependsOn(tasks.withType<PublishToMavenRepository>().matching {
            it.repository == publishing.repositories["external"]
        })
    }
    // end::shorthand-tasks[]
    
    tasks.register("publishForDevelopment") {
        group = "publishing"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/ivy-publish/conditional-publishing/groovy/build.gradle

    tasks.register('publishToExternalRepository') {
        group "publishing"
        description "Publishes all Ivy publications to Ivy repository 'external'."
        dependsOn tasks.withType(PublishToIvyRepository).matching {
            it.repository == publishing.repositories.external
        }
    }
    tasks.register('publishToInternalRepository') {
        group "publishing"
        description "Publishes all Ivy publications to Ivy repository 'internal'."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. releasenotes/notes/gateway-gwc-publish-supportedfeatures.yaml

    apiVersion: release-notes/v2
    
    kind: feature
    area: traffic-management
    issue:
      - https://github.com/kubernetes-sigs/gateway-api/issues/2162
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 290 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/customPlugin/readme.xml

        <para>This sample contains the following projects:</para>
        <itemizedlist>
            <listitem>
                <para>The <filename>java-gradle-plugin</filename> directory contains the project that implements and publishes the plugin.</para>
            </listitem>
            <listitem>
                <para>The <filename>consumer</filename> directory contains the project that uses the plugin.</para>
            </listitem>
        </itemizedlist>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 563 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/maven-publish/conditional-publishing/groovy/build.gradle

        group = 'publishing'
        description = 'Publishes all Maven publications to the external Maven repository.'
        dependsOn tasks.withType(PublishToMavenRepository).matching {
            it.repository == publishing.repositories.external
        }
    }
    // end::shorthand-tasks[]
    tasks.register('publishForDevelopment') {
        group = 'publishing'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top