Kobalt 1.0.69 update.
This commit is contained in:
parent
90605dcafc
commit
c71713679f
9 changed files with 642 additions and 602 deletions
|
@ -1,17 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module external.linked.project.id="example" external.linked.project.path="$MODULE_DIR$/.." external.root.project.path="$MODULE_DIR$/.." external.system.id="KOBALT" type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager">
|
||||
<output url="file://$MODULE_DIR$/../kobaltBuild/classes" />
|
||||
<output-test url="file://$MODULE_DIR$/../kobaltBuild/test-classes" />
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/src/main/kotlin" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/src/test/kotlin" isTestSource="true" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/kobaltBuild" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
<orderEntry type="module" module-name="kobalt-property-file" />
|
||||
<orderEntry type="library" name="KotlinJavaRuntime" level="project" />
|
||||
</component>
|
||||
</module>
|
|
@ -7,7 +7,8 @@ import net.thauvin.erik.kobalt.plugin.propertyfile.*
|
|||
// ./kobaltw propertyFile
|
||||
|
||||
val bs = buildScript {
|
||||
plugins(file("../libs/kobalt-property-file-0.1.0.jar"))
|
||||
plugins(file("../kobaltBuild/libs/kobalt-property-file-0.9.0.jar"))
|
||||
// plugins("net.thauvin.erik:kobalt-property-file:")
|
||||
}
|
||||
|
||||
val p = project {
|
||||
|
@ -33,12 +34,20 @@ val p = project {
|
|||
}
|
||||
|
||||
propertyFile {
|
||||
// parameters
|
||||
file = "version.properties"
|
||||
comment = "##Generated file - do not modify!"
|
||||
// failOnWarning = true
|
||||
|
||||
// Version properties with patch increment
|
||||
entry(key = "version.major", value = "1")
|
||||
entry(key = "version.minor", value = "0")
|
||||
entry(key = "version.patch", value = "1", default = "-1", type = Types.INT, operation = Operations.ADD)
|
||||
entry(key = "version.date", value = "now", type = Types.DATE)
|
||||
// ISO8601 date
|
||||
entry(key = "version.dateISO", value = "now", type = Types.DATE, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSZ")
|
||||
|
||||
// Set date to now, then add a month
|
||||
entry(key = "date.nextMonth", value = "now", type = Types.DATE)
|
||||
entry(key = "date.nextMonth", value = "0", type = Types.DATE, unit = Units.MONTH, operation = Operations.ADD)
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
kobalt.version=1.0.68
|
||||
kobalt.version=1.0.69
|
Loading…
Add table
Add a link
Reference in a new issue