Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for assertMetadataAndJarFilePublished (0.59 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/DelegatingIvyModule.java

        }
    
        @Override
        public void assertIvyAndJarFilePublished() {
            backingModule.assertIvyAndJarFilePublished();
        }
    
        @Override
        public void assertMetadataAndJarFilePublished() {
            backingModule.assertMetadataAndJarFilePublished();
        }
    
        @Override
        public IvyModule withVariant(String name, Closure<?> action) {
            backingModule.withVariant(name, action);
            return this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyModule.java

        void assertIvyAndJarFilePublished();
    
        /**
         * Assert that exactly the module metadata file, ivy.xml and jar file for this module, plus checksum files, have been published.
         */
        void assertMetadataAndJarFilePublished();
    
        void assertPublishedAsJavaModule();
    
        void assertPublishedAsWebModule();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishSftpIntegrationTest.groovy

            module.moduleMetadata.sha512.expectParentCheckdir()
            module.moduleMetadata.sha512.expectFileUpload()
    
            then:
            succeeds 'publish'
    
            module.assertMetadataAndJarFilePublished()
            module.jarFile.assertIsCopyOf(file('build/libs/publish-2.jar'))
    
            where:
            layout   | m2Compatible
            'gradle' | false
            'maven'  | true
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top