Skip to content

Commit d872f84

Browse files
author
Brian Dupuis
committedOct 31, 2016
Trial and error.
1 parent 95b4780 commit d872f84

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed
 

‎gradle.properties

-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,3 @@
1212
# This option should only be used with decoupled projects. More details, visit
1313
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1414
# 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")

‎rxmarkdown/build.gradle

+4-5
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,14 @@ publishing {
9696
mavenLocal()
9797
}
9898
}
99-
10099
artifactory {
101-
contextUrl = "${artifactory_contextUrl}"
100+
contextUrl = System.getenv("artifactory_contextUrl")// "${artifactory_contextUrl}"
102101
//The base Artifactory URL if not overridden by the publisher/resolver
103102
publish {
104103
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")
108107
maven = true
109108
}
110109
defaults {

0 commit comments

Comments
 (0)