Kobalt 1.0.6 update.
This commit is contained in:
parent
f823f3be8c
commit
4171f5bb39
6 changed files with 397 additions and 395 deletions
|
@ -18,6 +18,15 @@
|
|||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="module-library">
|
||||
<library name="Kobalt: com.beust.kobalt:kobalt:jar:1.0.6">
|
||||
<CLASSES>
|
||||
<root url="jar://$USER_HOME$/.kobalt/wrapper/dist/kobalt-1.0.6/kobalt/wrapper/kobalt-1.0.6.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="module-library">
|
||||
<library name="Kobalt: kobalt-exec-0.6.3.jar">
|
||||
<CLASSES>
|
||||
|
@ -27,14 +36,5 @@
|
|||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="module-library">
|
||||
<library name="Kobalt: com.beust.kobalt:kobalt:jar:1.0.5">
|
||||
<CLASSES>
|
||||
<root url="jar://$USER_HOME$/.kobalt/wrapper/dist/kobalt-1.0.5/kobalt/wrapper/kobalt-1.0.5.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
</component>
|
||||
</module>
|
|
@ -12,16 +12,18 @@ import org.apache.maven.model.Developer
|
|||
import org.apache.maven.model.License
|
||||
import org.apache.maven.model.Model
|
||||
import org.apache.maven.model.Scm
|
||||
import java.io.File
|
||||
|
||||
val semver = "0.6.3"
|
||||
|
||||
val bs = buildScript {
|
||||
val f = java.io.File("kobaltBuild/libs/kobalt-exec-$semver.jar")
|
||||
val p = if (f.exists()) {
|
||||
kobaltLog(1, " >>> Using: ${f.path}")
|
||||
file(f.path)
|
||||
} else {
|
||||
"net.thauvin.erik:kobalt-exec:"
|
||||
val p = with(File("kobaltBuild/libs/kobalt-exec-$semver.jar")) {
|
||||
if (exists()) {
|
||||
kobaltLog(1, " >>> Using: $path")
|
||||
file(path)
|
||||
} else {
|
||||
"net.thauvin.erik:kobalt-exec:"
|
||||
}
|
||||
}
|
||||
plugins("net.thauvin.erik:kobalt-versioneye:", p)
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
kobalt.version=1.0.5
|
||||
kobalt.version=1.0.6
|
Loading…
Add table
Add a link
Reference in a new issue