blob: cacfeff8ab313f1058637a1c160c798292ba79c8 [file] [log] [blame]
Yigit Boyar88c16ce2017-02-08 16:06:14 -08001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080016// Add ext.libs for library versions
17def libs = [:]
18
19// Testing dependencies
Aurimas Liutikas963facb2017-06-12 10:10:33 -070020libs.mockito_core = 'org.mockito:mockito-core:2.7.6'
21libs.dexmaker_mockito = 'com.linkedin.dexmaker:dexmaker-mockito:2.2.0'
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080022libs.junit = 'junit:junit:4.12'
Aurimas Liutikas1ab9ff42017-09-25 17:01:12 -070023libs.test_runner = 'com.android.support.test:runner:1.0.1'
24libs.test_rules = 'com.android.support.test:rules:1.0.1'
25libs.espresso_core = 'com.android.support.test.espresso:espresso-core:3.0.1'
26libs.espresso_contrib = 'com.android.support.test.espresso:espresso-contrib:3.0.1'
Aurimas Liutikas1f89c5d2017-04-20 10:54:57 -070027libs.jacoco = 'org.jacoco:org.jacoco.core:0.7.8'
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080028
Aurimas Liutikas9ab3b4c2017-04-19 09:33:27 -070029def androidPluginVersionOverride = System.getenv("GRADLE_PLUGIN_VERSION")
30
31if (androidPluginVersionOverride != null) {
32 libs.gradle = 'com.android.tools.build:gradle:' + androidPluginVersionOverride
33} else {
34 // Keep gradle plugin version in sync with ub_supportlib-master manifest.
Aurimas Liutikas564b3222017-10-04 15:53:16 -070035 libs.gradle = 'com.android.tools.build:gradle:3.0.0-beta7'
Aurimas Liutikas9ab3b4c2017-04-19 09:33:27 -070036}
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080037
Sergey Vasilinetsc2986282017-08-24 15:46:12 -070038//arch components
Aurimas Liutikaseb45a182017-10-12 14:33:25 -070039libs.arch_lifecycle_runtime = "android.arch.lifecycle:runtime:1.0.0@aar"
Sergey Vasilinetsc2986282017-08-24 15:46:12 -070040
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080041// Other dependencies
42libs.xml_parser_apis = 'xerces:xmlParserAPIs:2.6.2'
43libs.xerces_impl = 'xerces:xercesImpl:2.6.2'
Aurimas Liutikasab01a4b2017-04-17 19:08:04 -070044libs.error_prone = 'net.ltgt.gradle:gradle-errorprone-plugin:0.0.10'
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080045
Siyamed Sinirc29ea5f2017-03-07 22:10:01 -080046// jarjar plugin
47libs.jarjar_gradle = 'org.anarres.jarjar:jarjar-gradle:1.0.0'
48
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080049rootProject.ext['libs'] = libs