aboutsummaryrefslogtreecommitdiff
path: root/builder-model/build.gradle
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@android.com>2013-04-29 17:52:12 -0700
committerXavier Ducrohet <xav@android.com>2013-04-29 17:57:15 -0700
commit4b622305fbb7dbcc13436180659ac71f06845c8c (patch)
tree28a35afd21339d49be3379b034fb3be82f9935cb /builder-model/build.gradle
parent10eff3c5df9e2078b08362b062d069d6b4ed5a7c (diff)
downloadbuild-4b622305fbb7dbcc13436180659ac71f06845c8c.tar.gz
Unify all temp local repo.
Also stop putting all dependencies inside the builder artifact, and instead let it depend on other artifacts. Change-Id: I0f3adb2883ac9f34dc82bff420964243487e09a4
Diffstat (limited to 'builder-model/build.gradle')
-rw-r--r--builder-model/build.gradle16
1 files changed, 8 insertions, 8 deletions
diff --git a/builder-model/build.gradle b/builder-model/build.gradle
index 6a13c79..919d112 100644
--- a/builder-model/build.gradle
+++ b/builder-model/build.gradle
@@ -18,14 +18,14 @@ def getVersion() {
version = getVersion()
archivesBaseName = 'builder-model'
-//task publishLocal(type: Upload) {
-// configuration = configurations.archives
-// repositories {
-// mavenDeployer {
-// repository(url: uri("$rootDir/repo"))
-// }
-// }
-//}
+task publishLocal(type: Upload) {
+ configuration = configurations.archives
+ repositories {
+ mavenDeployer {
+ repository(url: uri("$rootProject.ext.androidHostOut/repo"))
+ }
+ }
+}
// custom tasks for creating source/javadoc jars
task sourcesJar(type: Jar, dependsOn:classes) {