diff --git a/kobalt/src/Build.kt b/kobalt/src/Build.kt index f7a7e50..13f0492 100644 --- a/kobalt/src/Build.kt +++ b/kobalt/src/Build.kt @@ -1,4 +1,5 @@ import com.beust.kobalt.* +import com.beust.kobalt.plugin.apt.* import com.beust.kobalt.plugin.packaging.* import com.beust.kobalt.plugin.publish.* import com.beust.kobalt.plugin.application.* @@ -9,6 +10,8 @@ val bs = buildScript { repos() } +val processorJar = file("K:\\java\\semver\\deploy\\semver-0.9.7.jar") + val p = project { @@ -43,11 +46,12 @@ val p = project { } dependencies { -// compile("com.beust:jcommander:1.48") + apt(processorJar) + compile("org.apache.velocity:velocity:1.7", processorJar) } dependenciesTest { - compile("org.testng:testng:6.10") + compile("org.testng:testng:6.11") } @@ -56,6 +60,11 @@ val p = project { } } + install { + libDir = "deploy" + println(collect(compileDependencies)) + } + application { mainClass = "com.example.Main" } @@ -69,4 +78,4 @@ val p = project { bintray { publish = false } -} +} \ No newline at end of file diff --git a/kobalt/wrapper/kobalt-wrapper.properties b/kobalt/wrapper/kobalt-wrapper.properties index 51854da..e8e88ab 100644 --- a/kobalt/wrapper/kobalt-wrapper.properties +++ b/kobalt/wrapper/kobalt-wrapper.properties @@ -1 +1 @@ -kobalt.version=1.0.19 \ No newline at end of file +kobalt.version=1.0.44 \ No newline at end of file diff --git a/libs/kobalt-test-0.1.jar b/libs/kobalt-test-0.1.jar new file mode 100644 index 0000000..d75442d Binary files /dev/null and b/libs/kobalt-test-0.1.jar differ