aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@android.com>2013-01-25 13:53:05 -0800
committerXavier Ducrohet <xav@android.com>2013-01-25 13:53:05 -0800
commit883405140705c28071d1eba1895f0f53e54c1646 (patch)
tree26016c1b8ca541726b7700807c0ba00fef17e1c5 /tests
parent0dd82fd03f0bfd6ab8fce47d6a0029ce5de20b43 (diff)
downloadbuild-883405140705c28071d1eba1895f0f53e54c1646.tar.gz
For java project to use 1.6.
Change-Id: Ie266cc78ba634c19b2e67e4e60303ed48040dd8e
Diffstat (limited to 'tests')
-rw-r--r--tests/multiproject/util/build.gradle3
-rw-r--r--tests/repo/util/build.gradle3
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/multiproject/util/build.gradle b/tests/multiproject/util/build.gradle
index 0f2c256..dff7725 100644
--- a/tests/multiproject/util/build.gradle
+++ b/tests/multiproject/util/build.gradle
@@ -3,3 +3,6 @@ apply plugin: 'java'
dependencies {
compile 'com.google.guava:guava:11.0.2'
}
+
+sourceCompatibility = "1.6"
+targetCompatibility = "1.6"
diff --git a/tests/repo/util/build.gradle b/tests/repo/util/build.gradle
index 9465ee3..2baca33 100644
--- a/tests/repo/util/build.gradle
+++ b/tests/repo/util/build.gradle
@@ -13,6 +13,9 @@ group = 'com.example.android.multiproject'
archivesBaseName = 'util'
version = '1.0'
+sourceCompatibility = "1.6"
+targetCompatibility = "1.6"
+
uploadArchives {
repositories {
mavenDeployer {