Prep for 0.9.0 release.
This commit is contained in:
parent
601cc742cd
commit
f1960ad9a6
4 changed files with 10 additions and 6 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
|
||||||
|
|
|
@ -16,4 +16,4 @@ cache:
|
||||||
before_cache:
|
before_cache:
|
||||||
- rm -rf .kobalt/*
|
- rm -rf .kobalt/*
|
||||||
|
|
||||||
script: ./kobaltw clean assemble
|
script: ./kobaltw clean assemble test
|
||||||
|
|
|
@ -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")
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue