2018-06-04 12:33:34 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-07-04 14:42:43 +00:00
|
|
|
classpath "com.github.jengelman.gradle.plugins:shadow:$shadow_version"
|
2018-06-04 12:33:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-04 14:42:43 +00:00
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply plugin: 'application'
|
|
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
|
2018-06-04 12:33:34 +00:00
|
|
|
dependencies {
|
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
2018-07-04 14:42:43 +00:00
|
|
|
compile "info.picocli:picocli:3.0.1"
|
|
|
|
testCompile "junit:junit:$junit_version"
|
2018-06-04 12:33:34 +00:00
|
|
|
}
|
2018-07-04 14:42:43 +00:00
|
|
|
|
2018-06-04 12:33:34 +00:00
|
|
|
mainClassName = "net.corda.avalanche.MainKt"
|
|
|
|
shadowJar {
|
|
|
|
baseName = "avalanche"
|
|
|
|
}
|