mirror of
				https://gitea.com/actions/setup-java.git
				synced 2025-11-04 07:47:06 +00:00 
			
		
		
		
	feat: implement cache-dependency-path option to control caching dependency (#499)
This commit is contained in:
		
							
								
								
									
										17
									
								
								__tests__/cache/gradle1/build.gradle
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								__tests__/cache/gradle1/build.gradle
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,17 @@
 | 
			
		||||
plugins {
 | 
			
		||||
    id 'java'
 | 
			
		||||
}
 | 
			
		||||
repositories {
 | 
			
		||||
    mavenCentral()
 | 
			
		||||
}
 | 
			
		||||
dependencies {
 | 
			
		||||
    implementation 'org.codehaus.groovy:groovy:1.8.6'
 | 
			
		||||
}
 | 
			
		||||
tasks.register('downloadDependencies') {
 | 
			
		||||
    doLast {
 | 
			
		||||
        def total = configurations.compileClasspath.inject (0) { sum, file ->
 | 
			
		||||
            sum + file.length()
 | 
			
		||||
        }
 | 
			
		||||
        println total
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user