mirror of
https://github.com/corda/corda.git
synced 2025-02-14 14:42:32 +00:00
27 lines
482 B
Groovy
27 lines
482 B
Groovy
apply plugin: 'kotlin'
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
apply plugin: 'com.jfrog.artifactory'
|
|
|
|
|
|
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'
|
|
}
|
|
|
|
|
|
artifacts {
|
|
compile jar
|
|
}
|
|
|
|
publish {
|
|
name jar.baseName
|
|
} |