We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents caf22a7 + cc8b667 commit 5548663Copy full SHA for 5548663
1 file changed
build.gradle
@@ -16,19 +16,6 @@ plugins {
16
apply plugin: 'nebula-aggregate-javadocs'
17
18
19
-/*
20
- * Gets the version name from the latest Git tag
21
- * http://ryanharter.com/blog/2013/07/30/automatic-versioning-with-git-and-gradle/
22
- */
23
-def getVersionName = { ->
24
- def stdout = new ByteArrayOutputStream()
25
- exec {
26
- commandLine 'git', 'describe', '--tags'
27
- standardOutput = stdout
28
- }
29
- return stdout.toString().trim().substring(1)
30
-}
31
-
32
allprojects {
33
apply plugin: 'java'
34
apply plugin: 'application'
@@ -50,7 +37,7 @@ allprojects {
50
37
testCompile group: 'junit', name: 'junit', version: '4.12'
51
38
}
52
39
53
- version = getVersionName()
40
+ version = '1.1.0'
54
41
55
42
compileJava {
56
43
options.compilerArgs << "-g"
0 commit comments