This commit is contained in:
Erik C. Thauvin 2020-03-02 09:26:17 -08:00
parent 3e37b3cd29
commit 71a911e2ff
5 changed files with 22 additions and 5 deletions

View file

@ -6,6 +6,7 @@ plugins {
// ./gradlew run --args='https://erik.thauvin.net'
// ./gradlew runJava --args='https://erik.thauvin.net'
// ./gradlew runRetrieve
repositories {
mavenLocal()
@ -31,4 +32,10 @@ tasks {
main = "com.example.BitlySample"
classpath = sourceSets["main"].runtimeClasspath
}
register("runRetrieve", JavaExec::class) {
group = "application"
main = "com.example.BitlyRetrieveKt"
classpath = sourceSets["main"].runtimeClasspath
}
}