Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getArtifactFile (0.28 sec)

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

            return t();
        }
    
        @Override
        public TestFile getArtifactFile() {
            return backingModule.getArtifactFile();
        }
    
        @Override
        public TestFile getArtifactFile(Map options) {
            return backingModule.getArtifactFile(options);
        }
    
        @Override
        public ModuleArtifact getArtifact() {
            return backingModule.getArtifact();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenModule.groovy

        /**
         * Returns a file relative to this module, using a relative path.
         */
        ModuleArtifact getArtifact(String relativePath)
    
        TestFile getArtifactFile()
    
        TestFile getArtifactFile(Map options)
    
        TestFile getMetaDataFile()
    
        MavenPom getParsedPom()
    
        ModuleArtifact getRootMetaData()
    
        ModuleArtifact getSnapshotMetaData()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/maven/MavenLocalModuleTest.groovy

            when:
            TestFile artifactFile = mavenLocalModule.getArtifactFile([:])
    
            then:
            artifactFile != null
            artifactFile.name == 'my-artifact-1.0.jar'
        }
    
        def "Get artifact file for snapshot"() {
            when:
            TestFile artifactFile = snapshotMavenLocalModule.getArtifactFile()
    
            then:
            artifactFile != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/maven/MavenFileModuleTest.groovy

            when:
            TestFile artifactFile = mavenFileModule.getArtifactFile([:])
    
            then:
            artifactFile != null
            artifactFile.name == 'my-artifact-1.0.jar'
        }
    
        def "Get artifact file for snapshot"() {
            when:
            TestFile artifactFile = snapshotMavenFileModule.getArtifactFile()
    
            then:
            artifactFile != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/plugin/PluginBuilder.groovy

            // The implementation jar module.
            def module = mavenRepo.module(group, artifact, version)
            def pluginModule = module.publish()
            def artifactFile = module.getArtifactFile()
    
            def markerModules = new ArrayList<Module>()
    
            pluginIds.keySet().each { id ->
                // The marker files for each plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top