aboutsummaryrefslogtreecommitdiff
path: root/tests/basic
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@android.com>2013-03-19 14:31:03 -0700
committerXavier Ducrohet <xav@android.com>2013-03-19 14:31:03 -0700
commita9e5c0ac0b1c01f48eb299941b2bcf58942b1119 (patch)
tree7a9f8bfe0e8ab396a49b552a9a9f87bf728696be /tests/basic
parente7359ead5b01d2f9ffc4510624faa9062887b83c (diff)
downloadbuild-a9e5c0ac0b1c01f48eb299941b2bcf58942b1119.tar.gz
Only package local dependencies in builder.
the builder library previously packaged all its dependencies in its jar. This started breaking when bouncycastle was added due some issue in the manifest. This solves it but also does something we should have done a while ago. Now only the local dependencies (mostly tools/base) are packaged in builder, while the external dependencies are now declared as dependencies. Since the builder is pushed to MavenCentral the dependencies can be found there. (Sample projects find them in the local repo clone). Change-Id: I789a2950056d0fe49c5f8fbaa11b149cc75a6361
Diffstat (limited to 'tests/basic')
-rw-r--r--tests/basic/build.gradle1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/basic/build.gradle b/tests/basic/build.gradle
index 79b3070..4b355f3 100644
--- a/tests/basic/build.gradle
+++ b/tests/basic/build.gradle
@@ -4,6 +4,7 @@
buildscript {
repositories {
maven { url '../../repo' }
+ maven { url '../../../../prebuilts/tools/common/m2/repository' }
}
dependencies {
classpath 'com.android.tools.build:gradle:0.4-SNAPSHOT'