mirror of
				https://github.com/InsanusMokrassar/MicroUtils.git
				synced 2025-11-04 14:14:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			566 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			566 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
project.version = "$version"
 | 
						|
project.group = "$group"
 | 
						|
 | 
						|
apply from: "$publishGradlePath"
 | 
						|
 | 
						|
kotlin {
 | 
						|
    jvm()
 | 
						|
 | 
						|
    sourceSets {
 | 
						|
        commonMain {
 | 
						|
            dependencies {
 | 
						|
                implementation kotlin('stdlib')
 | 
						|
            }
 | 
						|
        }
 | 
						|
        commonTest {
 | 
						|
            dependencies {
 | 
						|
                implementation kotlin('test-common')
 | 
						|
                implementation kotlin('test-annotations-common')
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        jvmTest {
 | 
						|
            dependencies {
 | 
						|
                implementation kotlin('test-junit')
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |