-
Notifications
You must be signed in to change notification settings - Fork 37
/
settings.gradle
62 lines (56 loc) · 1.65 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
pluginManagement {
repositories {
exclusiveContent {
forRepository {
maven {
url = uri("https://a8c-libs.s3.amazonaws.com/android")
}
}
filter {
includeGroup "com.automattic.android"
includeGroup "com.automattic.android.configure"
includeGroup "com.automattic.android.publish-to-s3"
}
}
gradlePluginPortal()
google()
}
}
plugins {
id 'com.gradle.enterprise' version '3.9'
}
def catalogVersion = "1.23.1"
dependencyResolutionManagement {
repositories {
exclusiveContent {
forRepository {
maven {
url = uri("https://a8c-libs.s3.amazonaws.com/android")
}
}
filter {
includeModule("com.automattic", "dependency-catalog")
}
}
}
versionCatalogs {
sharedLibs {
from("com.automattic:dependency-catalog:$catalogVersion")
version("androidx-annotation", "1.0.2")
version("androidx-appcompat", "1.0.2")
version("androidx-constraintlayout", "1.1.3")
version("androidx-recyclerview", "1.0.0")
version("apache-commons-text", "1.10.0")
version("facebook-flipper", "0.51.0")
version("facebook-soloader", "0.9.0")
}
}
}
rootProject.name = 'FluxC'
include ':fluxc',
':fluxc-processor',
':fluxc-annotations',
':plugins:woocommerce',
':example',
':tests:api'
apply from: './config/gradle/gradle_build_cache.gradle'