44 lines
1015 B
Groovy
44 lines
1015 B
Groovy
apply plugin: 'application'
|
|
apply plugin: 'kotlin'
|
|
|
|
version = "0.5.0"
|
|
|
|
if (!hasProperty('mainClass')) {
|
|
ext.mainClass = 'inr.numass.control.readvac.ReadVac'
|
|
}
|
|
mainClassName = mainClass
|
|
|
|
dependencies {
|
|
compile project(':numass-control')
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
|
|
}
|
|
|
|
task testDevice(dependsOn: classes, type: JavaExec) {
|
|
main mainClass
|
|
args = ["--config.resource=/config-test/devices.xml"]
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
description "Start application in debug mode with default virtual port"
|
|
group "test"
|
|
}
|
|
buildscript {
|
|
ext.kotlin_version = '1.1.51'
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
}
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
compileKotlin {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
} |