mirror of
				https://hub.gitmirror.com/https://github.com/gradle/actions.git
				synced 2025-11-04 03:50:02 +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()
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |