Prep for 0.9.0 release.

This commit is contained in:
Erik C. Thauvin 2017-04-24 15:21:42 -07:00
parent 601cc742cd
commit f1960ad9a6
4 changed files with 10 additions and 6 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

@ -16,4 +16,4 @@ cache:
before_cache: before_cache:
- rm -rf .kobalt/* - rm -rf .kobalt/*
script: ./kobaltw clean assemble script: ./kobaltw clean assemble test

View file

@ -7,8 +7,8 @@ import net.thauvin.erik.kobalt.plugin.propertyfile.*
// ./kobaltw propertyFile // ./kobaltw propertyFile
val bs = buildScript { val bs = buildScript {
plugins(file("../kobaltBuild/libs/kobalt-property-file-0.9.0.jar")) //repos(file("K:/maven/repository"))
//plugins("net.thauvin.erik:kobalt-property-file:") plugins("net.thauvin.erik:kobalt-property-file:")
} }
val p = project { val p = project {
@ -39,7 +39,7 @@ val p = project {
comment = "##Generated file - do not modify!" comment = "##Generated file - do not modify!"
//failOnWarning = true //failOnWarning = true
//entry(key = "version.fail", value = "a", type = Types.INT) entry(key = "version.fail", value = "a", type = Types.INT)
// Version properties with patch increment // Version properties with patch increment
entry(key = "version.major", value = "1") entry(key = "version.major", value = "1")

View file

@ -8,7 +8,8 @@ import org.apache.maven.model.*
val semver = "0.9.0" val semver = "0.9.0"
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()
@ -52,7 +53,9 @@ val p = project {
fatJar = true fatJar = true
} }
mavenJars {} mavenJars {
fatJar = true
}
} }
autoGitTag { autoGitTag {