aboutsummaryrefslogtreecommitdiff
path: root/gradle/build.gradle
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@google.com>2013-09-12 18:59:01 -0700
committerXavier Ducrohet <xav@google.com>2013-09-12 18:59:01 -0700
commit08c2be1c650f3902ed6c3d6fa044877bd3b9ef8f (patch)
treef8e1a57d7f971a73d7b2b014598f549724fdeae2 /gradle/build.gradle
parent6e909b00391b4c72b2d0c92d835fe4f67629640e (diff)
downloadbuild-08c2be1c650f3902ed6c3d6fa044877bd3b9ef8f.tar.gz
Add way to override the local repo destination.
'./gradlew -PlocalRepo=/path/to/repo publishLocal' Change-Id: I8a262aafa2f559657c6cc5ed52ac1529615642db
Diffstat (limited to 'gradle/build.gradle')
-rw-r--r--gradle/build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/gradle/build.gradle b/gradle/build.gradle
index aa9dd10..d64bec1 100644
--- a/gradle/build.gradle
+++ b/gradle/build.gradle
@@ -84,7 +84,7 @@ task publishLocal(type: Upload) {
configuration = configurations.archives
repositories {
mavenDeployer {
- repository(url: uri("$rootProject.ext.androidHostOut/repo"))
+ repository(url: uri(rootProject.ext.localRepo))
}
}
}