Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for publishTest (0.16 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

                expectFiles "bar-1.1.jar", "foo-1.0.jar", "publishTest-1.9.jar"
            }
    
            and:
            resolveApiArtifacts(javaLibrary) {
                expectFiles "foo-1.0.jar", "publishTest-1.9.jar"
            }
    
            and:
            resolveRuntimeArtifacts(javaLibrary) {
                expectFiles "bar-1.1.jar", "foo-1.0.jar", "publishTest-1.9.jar"
            }
    
            where:
            config << [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishFeaturesJavaIntegTest.groovy

                javaLibrary.mavenModule.assertArtifactsPublished(
                        "publishTest-1.9.jar" ,
                        "publishTest-1.9-optional-feature.jar" ,
                        "publishTest-1.9.pom",
                        "publishTest-1.9.module")
                javaLibrary.parsedModuleMetadata.variant("apiElements") {
                    assert files*.name == ["publishTest-1.9.jar"]
                    noMoreDependencies()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishFeaturesJavaIntegTest.groovy

            and:
            resolveArtifacts(javaLibrary) { expectFiles "publishTest-1.9.jar" }
            resolveApiArtifacts(javaLibrary) { expectFiles "publishTest-1.9.jar" }
            resolveRuntimeArtifacts(javaLibrary) { expectFiles "publishTest-1.9.jar" }
    
            resolveRuntimeArtifacts(javaLibrary) {
                optionalFeatureCapabilities << "org:optional-feature:1.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenScopesTestIntegTest.groovy

    import org.gradle.test.fixtures.maven.MavenModule
    
    class MavenScopesTestIntegTest extends AbstractIntegrationSpec {
        def setup() {
            settingsFile << "rootProject.name = 'publishTest'"
            buildFile << """
                plugins {
                    id 'maven-publish'
                    id 'java-library'
                }
    
                group = 'org.gradle.test'
                version = '1.9'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

            javaLibrary.assertNoDependencies()
    
            and:
            resolveArtifacts(javaLibrary) { expectFiles "publishTest-1.9.jar" }
            resolveApiArtifacts(javaLibrary) { expectFiles "publishTest-1.9.jar" }
            resolveRuntimeArtifacts(javaLibrary) { expectFiles "publishTest-1.9.jar" }
        }
    
        def "can publish java-library with dependencies"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenGradleModuleMetadataPublishIntegrationTest.groovy

                    }
                }
    
            """
    
            settingsFile << "rootProject.name = 'publishTest' "
    
            when:
            succeeds 'publish'
    
            then:
            succeeds 'publish'
    
            then:
            def module = mavenRepo.module('group', 'publishTest', '1.0')
            module.assertPublished()
            module.parsedModuleMetadata.variants.size() == 2
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyGradleModuleMetadataPublishIntegrationTest.groovy

                    }
                }
    
            """
    
            settingsFile << "rootProject.name = 'publishTest' "
    
            when:
            succeeds 'publish'
    
            then:
            succeeds 'publish'
    
            then:
            def module = ivyRepo.module('group', 'publishTest', '1.0')
            module.assertPublished()
            module.parsedModuleMetadata.variants.size() == 2
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 30.4K bytes
    - Viewed (0)
  8. 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)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginPublishingIntegrationTest.groovy

            """
        }
    
        def "Publishes main plugin artifact to Ivy"() {
            given:
            plugin('foo', 'com.example.foo')
            publishToIvy()
    
            when:
            succeeds 'publish'
    
            then:
    
            ivyRepo.module('com.example', 'plugins', '1.0').assertPublished()
        }
    
        def "Publishes main plugin artifact to Maven"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 13:07:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    Publishes the _PubName_ publication to the repository named _RepoName_. If you have a repository definition without an explicit name, _RepoName_ will be "Ivy".
    
    `publish`::
    _Depends on_: All `publish__PubName__PublicationTo__RepoName__Repository` tasks
    +
    An aggregate task that publishes all defined publications to all defined repositories.
    
    [[publishing_ivy:publications]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top