summaryrefslogtreecommitdiff
path: root/android/testData/guiTests
diff options
context:
space:
mode:
authorAlex Ruiz <alruiz@google.com>2014-08-19 21:21:27 -0700
committerAlex Ruiz <alruiz@google.com>2014-08-20 11:16:02 -0700
commitb23801cfda38454d07f6ab7b47e55a011fdc5822 (patch)
tree143730ddbe6e5582a74861cee040005d8468fc18 /android/testData/guiTests
parent4ed784ff5e095adc6fa46a255344551bebdb54a9 (diff)
downloadidea-b23801cfda38454d07f6ab7b47e55a011fdc5822.tar.gz
[UI Testing] Added supported for clicking URL in Messages tool window.
This work is necessary to write tests that verify that project sync failures are handled properly (e.g. clicking "quick-fix URLs.) Change-Id: I3f9c81b6dbc973bd6055eef09dbfc4bcdaabdac7
Diffstat (limited to 'android/testData/guiTests')
-rw-r--r--android/testData/guiTests/SimpleApplication/build.gradle6
1 files changed, 4 insertions, 2 deletions
diff --git a/android/testData/guiTests/SimpleApplication/build.gradle b/android/testData/guiTests/SimpleApplication/build.gradle
index e63466dbd1b..fe8ac4638a8 100644
--- a/android/testData/guiTests/SimpleApplication/build.gradle
+++ b/android/testData/guiTests/SimpleApplication/build.gradle
@@ -2,7 +2,9 @@
buildscript {
repositories {
- jcenter()
+ // We need to use mavenCentral instead of jcenter because this project is used to test project sync when using old versions of
+ // Gradle. For example, syncing using Gradle 1.5 throws an exception because it doesn't know about jcenter.
+ mavenCentral()
if (System.getenv("MAVEN_URL") != null) {
maven {url System.getenv("MAVEN_URL")}
}
@@ -17,6 +19,6 @@ buildscript {
allprojects {
repositories {
- jcenter()
+ mavenCentral()
}
}