Prep for 0.6.5 release.
This commit is contained in:
parent
a52cdc7079
commit
079d8877f1
3 changed files with 8 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -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
|
||||||
|
|
|
@ -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:")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue