NeoTerm_System/NeoLang/build.gradle

33 lines
584 B
Groovy
Raw Normal View History

2017-07-12 23:46:09 +08:00
apply plugin: 'java-library'
apply plugin: 'kotlin'
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
compile rootProject.ext.deps["kotlin-stdlib"]
2017-07-12 23:46:09 +08:00
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath rootProject.ext.deps["kotlin-gradle-plugin"]
2017-07-12 23:46:09 +08:00
}
}
repositories {
mavenCentral()
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
2017-08-03 23:55:08 +08:00
dependencies {
testImplementation rootProject.ext.deps["junit"]
2017-08-03 23:55:08 +08:00
}