Kobalt 1.0.69 update.

This commit is contained in:
Erik C. Thauvin 2017-04-18 16:02:11 -07:00
parent 90605dcafc
commit c71713679f
9 changed files with 642 additions and 602 deletions

View file

@ -10,15 +10,24 @@
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module-library">
<library name="Kobalt: com.beust.kobalt:kobalt:jar:1.0.68">
<library name="Kobalt: com.beust.kobalt:kobalt:jar:1.0.69">
<CLASSES>
<root url="jar://$USER_HOME$/.kobalt/wrapper/dist/kobalt-1.0.68/kobalt/wrapper/kobalt-1.0.68.jar!/" />
<root url="jar://$USER_HOME$/.kobalt/wrapper/dist/kobalt-1.0.69/kobalt/wrapper/kobalt-1.0.69.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES>
<root url="jar://$USER_HOME$/.kobalt/wrapper/dist/kobalt-1.0.68/kobalt/wrapper/kobalt-1.0.68-sources.jar!/" />
<root url="jar://$USER_HOME$/.kobalt/wrapper/dist/kobalt-1.0.69/kobalt/wrapper/kobalt-1.0.69-sources.jar!/" />
</SOURCES>
</library>
</orderEntry>
<orderEntry type="module-library">
<library name="Kobalt: kobalt-versioneye-0.4.4.jar">
<CLASSES>
<root url="jar://$USER_HOME$/.kobalt/cache/net/thauvin/erik/kobalt-versioneye/0.4.4/kobalt-versioneye-0.4.4.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</orderEntry>
</component>
</module>

View file

@ -1,10 +1,15 @@
import com.beust.kobalt.*
import com.beust.kobalt.plugin.packaging.assemble
import com.beust.kobalt.profile
import com.beust.kobalt.project
import com.beust.kobalt.plugin.publish.autoGitTag
import com.beust.kobalt.plugin.publish.bintray
import net.thauvin.erik.kobalt.plugin.versioneye.versionEye
import org.apache.maven.model.*
val semver = "0.1.0"
val semver = "0.9.0"
val bs = buildScript {
plugins("net.thauvin.erik:kobalt-versioneye:")
}
val dev by profile()
val kobaltDependency = if (dev) "kobalt" else "kobalt-plugin-api"
@ -15,6 +20,25 @@ val p = project {
artifactId = name
version = semver
pom = Model().apply {
description = "PropertyFile plug-in for the Kobalt build system."
url = "https://github.com/ethauvin/kobalt-property-file"
licenses = listOf(License().apply {
name = "BSD 3-Clause"
url = "https://opensource.org/licenses/BSD-3-Clause"
})
scm = Scm().apply {
url = "https://github.com/ethauvin/kobalt-property-file"
connection = "https://github.com/ethauvin/kobalt-property-file.git"
developerConnection = "git@github.com:ethauvin/kobalt-property-file.git"
}
developers = listOf(Developer().apply {
id = "ethauvin"
name = "Erik C. Thauvin"
email = "erik@thauvin.net"
})
}
dependencies {
compile("com.beust:$kobaltDependency:")
}
@ -30,4 +54,20 @@ val p = project {
mavenJars {}
}
autoGitTag {
enabled = true
message = "Version $version"
}
bintray {
publish = true
description = "Release version $version"
vcsTag = version
}
versionEye {
org = "Thauvin"
team = "Owners"
}
}

View file

@ -1 +1 @@
kobalt.version=1.0.68
kobalt.version=1.0.69