prog8/compiler/build.gradle

22 lines
548 B
Groovy

plugins {
id "org.jetbrains.kotlin.jvm" version "1.3.20"
}
repositories {
mavenCentral()
jcenter()
}
def kotlinVersion = '1.3.20'
dependencies {
implementation project(':parser')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
runtime "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit5:$kotlinVersion"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.2'
testImplementation 'org.hamcrest:hamcrest-junit:2.0.0.0'
}