mirror of
				https://github.com/irmen/prog8.git
				synced 2025-10-31 00:16:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			798 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			798 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| 
 | |
| plugins {
 | |
|     id 'java'
 | |
|     id 'application'
 | |
|     id "org.jetbrains.kotlin.jvm"
 | |
| }
 | |
| 
 | |
| java {
 | |
|     toolchain {
 | |
|         languageVersion = JavaLanguageVersion.of(javaVersion)
 | |
|     }
 | |
| }
 | |
| 
 | |
| compileKotlin {
 | |
|     kotlinOptions {
 | |
|         jvmTarget = javaVersion
 | |
|     }
 | |
| }
 | |
| 
 | |
| compileTestKotlin {
 | |
|     kotlinOptions {
 | |
|         jvmTarget = javaVersion
 | |
|     }
 | |
| }
 | |
| 
 | |
| dependencies {
 | |
|     implementation project(':codeCore')
 | |
|     implementation project(':compilerAst')
 | |
|     implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
 | |
|     // implementation "org.jetbrains.kotlin:kotlin-reflect"
 | |
| }
 | |
| 
 | |
| sourceSets {
 | |
|     main {
 | |
|         java {
 | |
|             srcDirs = ["${project.projectDir}/src"]
 | |
|         }
 | |
|         resources {
 | |
|             srcDirs = ["${project.projectDir}/res"]
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| // note: there are no unit tests in this module!
 |