Fixed directory name typo.
This commit is contained in:
parent
e3dc6af9b1
commit
aed7e8434f
21 changed files with 35 additions and 33 deletions
28
samples/kotlin/kobalt/src/Build.kt
Normal file
28
samples/kotlin/kobalt/src/Build.kt
Normal file
|
@ -0,0 +1,28 @@
|
|||
import com.beust.kobalt.*
|
||||
import com.beust.kobalt.plugin.application.*
|
||||
import com.beust.kobalt.plugin.packaging.assemble
|
||||
|
||||
// ./kobaltw run
|
||||
|
||||
val bs = buildScript {
|
||||
repos(localMaven())
|
||||
}
|
||||
|
||||
val p = project {
|
||||
name = "KotlinExample"
|
||||
version = "0.1"
|
||||
|
||||
dependencies {
|
||||
compile("net.thauvin.erik:pinboard-poster:1.0.0")
|
||||
}
|
||||
|
||||
assemble {
|
||||
jar {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
application {
|
||||
mainClass = "net.thauvin.erik.pinboard.samples.KotlinExampleKt"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue