Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getArtifactFile (0.68 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DependencyVerifyingModuleComponentRepository.java

                                    if (!changingModule) {
                                        File artifactFile = metadataFileSource.getArtifactFile();
                                        if (artifactFile != null && artifactFile.exists()) {
                                            // it's possible that the file is null if it has been removed from the cache for example
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/AbstractMavenModule.groovy

        @Override
        MavenModule parent(String group, String artifactId, String version) {
            parentPom = [groupId: group, artifactId: artifactId, version: version]
            return this
        }
    
        TestFile getArtifactFile(Map options = [:]) {
            return getArtifact(options).file
        }
    
        @Override
        String getPublishArtifactVersion() {
            if (uniqueSnapshots && version.endsWith("-SNAPSHOT")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top