Prep for 0.6.5 release.

This commit is contained in:
Erik C. Thauvin 2017-04-24 14:19:53 -07:00
parent a52cdc7079
commit 079d8877f1
3 changed files with 8 additions and 4 deletions

1
.gitignore vendored
View file

@ -4,6 +4,7 @@
**/.idea/tasks.xml **/.idea/tasks.xml
**/.idea/workspace.xml **/.idea/workspace.xml
*.iws *.iws
*.sublime-*
.classpath .classpath
.DS_Store .DS_Store
.gradle .gradle

View file

@ -8,7 +8,7 @@ import net.thauvin.erik.kobalt.plugin.exec.*
// ./kobaltw example2:exec --log 2 // ./kobaltw example2:exec --log 2
val bs = buildScript { val bs = buildScript {
//plugins(file("../kobaltBuild/libs/kobalt-exec-0.6.4.jar")) //repos(file("K:/maven/repository"))
plugins("net.thauvin.erik:kobalt-exec:") plugins("net.thauvin.erik:kobalt-exec:")
} }

View file

@ -7,7 +7,8 @@ import net.thauvin.erik.kobalt.plugin.versioneye.versionEye
import org.apache.maven.model.* import org.apache.maven.model.*
val bs = buildScript { val bs = buildScript {
plugins("net.thauvin.erik:kobalt-versioneye:") repos(file("K:/maven/repository"))
plugins("net.thauvin.erik:kobalt-versioneye:", "net.thauvin.erik:kobalt-maven-local:")
} }
val dev by profile() val dev by profile()
@ -18,7 +19,7 @@ val p = project {
name = "kobalt-exec" name = "kobalt-exec"
group = "net.thauvin.erik" group = "net.thauvin.erik"
artifactId = name artifactId = name
version = "0.6.4" version = "0.6.5"
pom = Model().apply { pom = Model().apply {
description = "Command Line Execution plug-in for the Kobalt build system." description = "Command Line Execution plug-in for the Kobalt build system."
@ -48,7 +49,9 @@ val p = project {
} }
assemble { assemble {
mavenJars {} mavenJars {
fatJar = true
}
} }
autoGitTag { autoGitTag {