Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for publishTest (0.13 sec)

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

            mavenModule.assertPublished()
            mavenModule.parsedPom.packaging == 'other'
            mavenModule.assertArtifactsPublished("publishTest-1.9.txt", "publishTest-1.9.other", "publishTest-1.9.pom")
        }
    
        def createBuildScripts(artifacts) {
            settingsFile << "rootProject.name = 'publishTest' "
    
            buildFile << """
                apply plugin: 'maven-publish'
    
                group = 'org.gradle.test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomPackagingJavaIntegTest.groovy

            javaLibrary.parsedModuleMetadata.variant("apiElements").files[0].url == "publishTest-1.9.jar"
            javaLibrary.parsedModuleMetadata.variant("runtimeElements").files[0].name == "publishTest-1.9.jar"
            javaLibrary.parsedModuleMetadata.variant("runtimeElements").files[0].url == "publishTest-1.9.jar"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/java-library-with-excludes.module

                            "prefers": "1.4"
                        }
                    }
                ],
                "files": [
                    {
                        "name": "publishTest-1.9.jar",
                        "url": "publishTest-1.9.jar",
                        "size": 261,
                        "sha1": "7577e284a8b6daf5cb2fe0d826343f22fadb8ad0",
                        "md5": "7233c4d2f6a17fd35a2def674868828b"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishFeaturesJavaPluginIntegTest.groovy

            resolveRuntimeArtifacts(javaLibrary) { expectFiles "publishTest-1.9.jar" }
    
            resolveRuntimeArtifacts(javaLibrary) {
                optionalFeatureCapabilities << "org.gradle.test:publishTest-feature:1.0"
                withModuleMetadata {
                    expectFiles "publishTest-1.9.jar", "publishTest-1.9-feature.jar", "optionaldep-1.0.jar"
                }
                withoutModuleMetadata {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishFeaturesJavaPluginIntegTest.groovy

            }
            javaLibrary.parsedPom.hasNoScope('compile')
    
            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.gradle.test:publishTest-feature:1.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 02 01:52:06 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishWarIntegTest.groovy

    class IvyPublishWarIntegTest extends AbstractIvyPublishIntegTest {
    
        void "can publish WAR only for mixed java and WAR project"() {
            given:
            file("settings.gradle") << "rootProject.name = 'publishTest' "
    
            and:
            buildFile << """
                apply plugin: 'java'
                apply plugin: 'war'
                apply plugin: 'ivy-publish'
    
                group = 'org.gradle.test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishVersionRangeIntegTest.groovy

    class IvyPublishVersionRangeIntegTest extends AbstractIvyPublishIntegTest {
        def ivyModule = javaLibrary(ivyRepo.module("org.gradle.test", "publishTest", "1.9"))
    
        void "version range is mapped to ivy syntax in published ivy descriptor file"() {
            given:
            settingsFile << "rootProject.name = 'publishTest' "
            buildFile << """
                apply plugin: 'ivy-publish'
                apply plugin: 'java-library'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishVersionRangeIntegTest.groovy

    class MavenPublishVersionRangeIntegTest extends AbstractMavenPublishIntegTest {
        def mavenModule = javaLibrary(mavenRepo.module("org.gradle.test", "publishTest", "1.9"))
    
        void "version range is mapped to maven syntax in published pom file"() {
            given:
            settingsFile << "rootProject.name = 'publishTest' "
            buildFile << """
                apply plugin: 'maven-publish'
                apply plugin: 'java-library'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishCustomComponentIntegTest.groovy

        }
    
        def createBuildScripts(def append) {
            settingsFile << "rootProject.name = 'publishTest' "
    
            buildFile << """
                apply plugin: 'maven-publish'
    
                group = 'org.gradle.test'
                version = '1.9'
    
                def publishedFile = file('publishTest-1.9.text') << 'content'
    
                configurations { foo }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/AbstractIvyPublishFeaturesJavaIntegTest.groovy

    import org.gradle.test.fixtures.ivy.IvyJavaModule
    
    abstract class AbstractIvyPublishFeaturesJavaIntegTest extends AbstractIvyPublishIntegTest {
        IvyFileModule module = ivyRepo.module("org.gradle.test", "publishTest", "1.9")
        IvyJavaModule javaLibrary = javaLibrary(module)
    
        def setup() {
            createBuildScripts("""
                publishing {
                    publications {
                        ivy(IvyPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top