mirror of
				https://github.com/irmen/prog8.git
				synced 2025-11-03 19:16:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			526 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			526 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
 | 
						|
 | 
						|
plugins {
 | 
						|
    kotlin("jvm")
 | 
						|
}
 | 
						|
 | 
						|
dependencies {
 | 
						|
    // should have no dependencies to other modules
 | 
						|
    // implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
 | 
						|
    implementation("com.michael-bull.kotlin-result:kotlin-result-jvm:2.0.1")
 | 
						|
}
 | 
						|
 | 
						|
sourceSets {
 | 
						|
    main {
 | 
						|
        java {
 | 
						|
            srcDir("${project.projectDir}/src")
 | 
						|
        }
 | 
						|
        resources {
 | 
						|
            srcDir("${project.projectDir}/res")
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
// note: there are no unit tests in this module!
 |