We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c625504 commit 66a1ab9Copy full SHA for 66a1ab9
build.gradle
@@ -9,8 +9,14 @@ apply plugin: 'idea'
9
apply plugin: 'project-report'
10
apply plugin: 'releaseNotes'
11
12
+
13
group = 'com.spidasoftware'
-version = '4.0-SNAPSHOT' //for nightly build, ensure that this is the first "version" in the file and keep single quotes
14
+version = '4.0-SNAPSHOT'
15
+def schemaReleaseVersion = System.getenv("SCHEMA_RELEASE_VERSION")
16
+if(schemaReleaseVersion){
17
+ println "Using ENV version $schemaReleaseVersion"
18
+ version = schemaReleaseVersion
19
+}
20
description = "Schema"
21
22
sourceCompatibility = 1.7
0 commit comments