We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25c3ce5 commit f8a5195Copy full SHA for f8a5195
build.gradle
@@ -25,6 +25,11 @@ String getBuildProperty(String property) {
25
project.findProperty (property) ?: System.getenv (property) ?: 'n/a'
26
}
27
28
+String getBuildSignKey(String property) {
29
+ project.findProperty (property) ?:
30
+ System.getenv (property) ? System.getenv (property).replace("\\n", "\n"): 'n/a'
31
+}
32
+
33
ext {
34
processorApiVersion = '2021.1'
35
processorCoreVersion = '2021.1-SNAPSHOT'
@@ -34,7 +39,7 @@ ext {
39
publishUser = getBuildProperty ('PUBLISH_USER')
40
publishKey = getBuildProperty ('PUBLISH_KEY')
36
41
37
- signKey = getBuildProperty ('SIGN_KEY')
42
+ signKey = getBuildSignKey ('SIGN_KEY')
38
43
signPwd = getBuildProperty ('SIGN_PWD')
44
45
isReleaseVersion = !version.endsWith("SNAPSHOT")
0 commit comments