First commit.

This commit is contained in:
Erik C. Thauvin 2018-06-29 20:21:27 -07:00
commit 17c072b192
39 changed files with 1817 additions and 0 deletions

View file

@ -0,0 +1,37 @@
buildscript {
repositories {
mavenLocal()
}
dependencies {
classpath "net.thauvin.erik.gradle:semver:0.9.1"
}
}
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'net.thauvin.erik.gradle.semver'
mainClassName = 'App'
version = 1.0
dependencies {
}
repositories {
jcenter()
}
run {
//dependsOn("incrementPatch")
doFirst {
println("Version: $version")
}
}
semver {
properties = "test.properties"
setKeysPrefix("test.")
buildMetaKey = "another"
}