mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-10-29 08:59:59 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			259 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			259 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| plugins {
 | |
|     java
 | |
| }
 | |
| 
 | |
| java {
 | |
|     toolchain {
 | |
|         languageVersion = JavaLanguageVersion.of(16)
 | |
|     }
 | |
| }
 | |
| 
 | |
| repositories {
 | |
|     mavenCentral()
 | |
| }
 | |
| 
 | |
| testing {
 | |
|     suites {
 | |
|         val test by getting(JvmTestSuite::class) {
 | |
|             useJUnit()
 | |
|         }
 | |
|     }
 | |
| }
 | 
