mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-10-29 17:10:02 +08:00 
			
		
		
		
	 3c3fdfcc0c
			
		
	
	
		3c3fdfcc0c
		
			
		
	
	
	
	
		
			
			The `.github/workflows` directory has additional permissions attached, preventing these files from being by the Upgrade Gradle Wrapper plugin.
		
			
				
	
	
		
			17 lines
		
	
	
		
			210 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			210 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| plugins {
 | |
|     id 'java'
 | |
| }
 | |
| 
 | |
| java {
 | |
|     toolchain {
 | |
|         languageVersion = JavaLanguageVersion.of(16)
 | |
|     }
 | |
| }
 | |
| 
 | |
| repositories {
 | |
|     mavenCentral()
 | |
| }
 | |
| 
 | |
| dependencies {
 | |
|     testImplementation('junit:junit:4.13.2')
 | |
| } |