mirror of
https://github.com/irmen/prog8.git
synced 2024-11-20 03:32:05 +00:00
22 lines
548 B
Groovy
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'
|
||
|
}
|
||
|
|