File tree 2 files changed +4
-9
lines changed
2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 12
12
# This option should only be used with decoupled projects. More details, visit
13
13
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
14
14
# org.gradle.parallel=true
15
- artifactory_user =System.getenv("artifactory_user")
16
- artifactory_repo =System.getenv("artifactory_repo")
17
- artifactory_password =System.getenv("artifactory_password")
18
- artifactory_contextUrl =System.getenv("artifactory_contextUrl")
Original file line number Diff line number Diff line change @@ -96,15 +96,14 @@ publishing {
96
96
mavenLocal()
97
97
}
98
98
}
99
-
100
99
artifactory {
101
- contextUrl = " ${ artifactory_contextUrl} "
100
+ contextUrl = System . getenv( " artifactory_contextUrl " ) // "${artifactory_contextUrl}"
102
101
// The base Artifactory URL if not overridden by the publisher/resolver
103
102
publish {
104
103
repository {
105
- repoKey = " ${ artifactory_repo} "
106
- username = " ${ artifactory_user} "
107
- password = " ${ artifactory_password} "
104
+ repoKey = System . getenv( " artifactory_repo" )
105
+ username = System . getenv( " artifactory_user" )
106
+ password = System . getenv( " artifactory_password" )
108
107
maven = true
109
108
}
110
109
defaults {
You can’t perform that action at this time.
0 commit comments