|
1 | | -buildscript { |
2 | | - ext { |
3 | | - gradlePluginVersion = '3.3.1' |
4 | | - kotlinCoroutinesVersion = '1.1.0' |
5 | | - supportLibVersion = '27.1.1' |
6 | | - tagSoupVersion = '1.2.1' |
7 | | - glideVersion = '4.10.0' |
8 | | - picassoVersion = '2.5.2' |
9 | | - robolectricVersion = '4.4' |
10 | | - jUnitVersion = '4.12' |
11 | | - jSoupVersion = '1.11.3' |
12 | | - wordpressUtilsVersion = '1.21' |
13 | | - espressoVersion = '3.0.1' |
14 | | - commonTargetSdkVersion = 30 |
15 | | - } |
| 1 | +plugins { |
| 2 | + id "com.android.application" apply false |
| 3 | + id "org.jetbrains.kotlin.android" apply false |
16 | 4 | } |
17 | 5 |
|
18 | 6 | allprojects { |
19 | 7 | repositories { |
| 8 | + maven { |
| 9 | + url "https://a8c-libs.s3.amazonaws.com/android" |
| 10 | + content { |
| 11 | + includeGroup "org.wordpress" |
| 12 | + includeGroup "org.wordpress.aztec" |
| 13 | + } |
| 14 | + } |
20 | 15 | google() |
21 | 16 | jcenter() |
22 | 17 | } |
@@ -47,3 +42,20 @@ subprojects { |
47 | 42 | args "-F", "src/**/*.kt" |
48 | 43 | } |
49 | 44 | } |
| 45 | + |
| 46 | +ext { |
| 47 | + gradlePluginVersion = '3.3.1' |
| 48 | + kotlinCoroutinesVersion = '1.1.0' |
| 49 | + supportLibVersion = '27.1.1' |
| 50 | + tagSoupVersion = '1.2.1' |
| 51 | + glideVersion = '4.10.0' |
| 52 | + picassoVersion = '2.5.2' |
| 53 | + robolectricVersion = '4.4' |
| 54 | + jUnitVersion = '4.12' |
| 55 | + jSoupVersion = '1.11.3' |
| 56 | + wordpressUtilsVersion = '1.21' |
| 57 | + espressoVersion = '3.0.1' |
| 58 | + commonTargetSdkVersion = 30 |
| 59 | + |
| 60 | + aztecProjectDependency = project.hasProperty("aztecVersion") ? "org.wordpress:aztec:${project.getProperty("aztecVersion")}" : project(":aztec") |
| 61 | +} |
0 commit comments