Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for postPublish (0.18 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenFileModule.groovy

      </versioning>
    </metadata>
    """
        }
    
        @Override
        protected onPublish(TestFile file) {
            sha1File(file)
            md5File(file)
            postPublish(file)
        }
    
        @Override
        protected boolean publishesMetaDataFile() {
            uniqueSnapshots && version.endsWith("-SNAPSHOT")
        }
    
        MavenFileModule removeGradleMetadataRedirection() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/AbstractModule.groovy

        }
    
        protected boolean isJarFile(TestFile testFile) {
            return FilenameUtils.getExtension(testFile.getName()) == 'jar'
        }
    
        protected abstract onPublish(TestFile file)
    
        protected void postPublish(TestFile file) {
            if (onEveryFile) {
                Closure cl = onEveryFile.clone()
                cl.delegate = file
                cl.resolveStrategy = Closure.DELEGATE_FIRST
                cl(file)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

                    builder.artifact(depArtifactAttrs)
                }
            }
        }
    
        @Override
        protected onPublish(TestFile file) {
            sha1File(file)
            postPublish(file)
        }
    
        private String getArtifactContent() {
            // Some content to include in each artifact, so that its size and content varies on each publish
            return (0..publishCount).join("-")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top