Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for consumePublicationWithPreviousVersion (0.34 sec)

  1. platforms/software/maven/src/crossVersionTest/groovy/org/gradle/api/publish/maven/MavenPublishCrossVersionIntegrationTest.groovy

            given:
            projectPublishedUsingMavenPublishPlugin('java')
    
            expect:
            consumePublicationWithPreviousVersion(false)
    
            file('build/resolved').assertHasDescendants('published-1.9.jar', 'test-project-1.2.jar')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/crossVersionTest/groovy/org/gradle/api/publish/ivy/IvyPublishCrossVersionIntegrationTest.groovy

        def "ivy java publication generated by ivy-publish plugin can be consumed by previous versions of Gradle"() {
            given:
            projectPublishedUsingIvyPublishPlugin('java')
    
            expect:
            consumePublicationWithPreviousVersion()
    
            file('build/resolved').assertHasDescendants("published-1.9.jar", 'test-project-1.2.jar')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top