Kobalt 1.0.71 update.

This commit is contained in:
Erik C. Thauvin 2017-04-19 10:21:47 -07:00
parent b471f6208d
commit 23eff89645
27 changed files with 622 additions and 834 deletions

View file

@ -1,14 +1,13 @@
import com.beust.kobalt.plugin.application.application
import com.beust.kobalt.plugin.apt.apt
import com.beust.kobalt.plugin.packaging.assemble
import com.beust.kobalt.plugin.packaging.install
import com.beust.kobalt.plugin.packaging.*
import com.beust.kobalt.project
import java.io.FileInputStream
import java.util.*
fun StringBuilder.prepend(s: String): StringBuilder {
if (this.length > 0) {
if (this.isNotEmpty()) {
this.insert(0, s)
}
return this
@ -40,15 +39,15 @@ val example = project {
dependencies {
apt(processorJar)
compile(processorJar)
compileOnly(processorJar)
}
apt {
outputDir = "/src/generated/java/"
outputDir = "../src/generated/java/"
}
install {
libDir = "deploy"
target = "deploy"
}
assemble {

View file

@ -1 +1 @@
kobalt.version=1.0.26
kobalt.version=1.0.71