Add version.gradle

This commit is contained in:
Florian Schmaus 2014-11-04 14:43:41 +01:00
parent 775477dcc7
commit b9167c5fe2
2 changed files with 8 additions and 2 deletions

View File

@ -11,13 +11,13 @@ buildscript {
}
apply plugin: 'org.kordamp.gradle.markdown'
apply from: 'version.gradle'
allprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
ext {
shortVersion = '4.1.0-alpha6'
isSnapshot = true
gitCommit = getGitCommit()
javadocAllDir = new File(buildDir, 'javadoc')
documentationDir = new File(buildDir, 'documentation')

6
version.gradle Normal file
View File

@ -0,0 +1,6 @@
allprojects {
ext {
shortVersion = '4.1.0-alpha6'
isSnapshot = true
}
}