mirror of
https://github.com/corda/corda.git
synced 2025-02-14 14:42:32 +00:00
16 lines
329 B
Groovy
16 lines
329 B
Groovy
apply plugin: 'kotlin'
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
}
|
|
|
|
ext {
|
|
loaderClassName = "net.corda.launcher.Loader"
|
|
launcherClassName = "net.corda.launcher.Launcher"
|
|
}
|
|
|
|
jar {
|
|
baseName 'corda-launcher'
|
|
}
|