-
Notifications
You must be signed in to change notification settings - Fork 7.3k
/
settings.gradle
49 lines (39 loc) · 1.21 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
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
}
dependencyResolutionManagement {
repositories {
mavenCentral()
google()
}
}
rootProject.name = 'retrofit-root'
include ':retrofit'
include ':retrofit-bom'
include ':retrofit:android-test'
include ':retrofit:java-test'
include ':retrofit:kotlin-test'
include ':retrofit:robovm-test'
include ':retrofit:test-helpers'
include ':retrofit-mock'
include ':retrofit-response-type-keeper'
include ':retrofit-adapters:guava'
include ':retrofit-adapters:java8'
include ':retrofit-adapters:rxjava'
include ':retrofit-adapters:rxjava2'
include ':retrofit-adapters:rxjava3'
include ':retrofit-adapters:scala'
include ':retrofit-converters:gson'
include ':retrofit-converters:guava'
include ':retrofit-converters:jackson'
include ':retrofit-converters:java8'
include ':retrofit-converters:jaxb'
include ':retrofit-converters:jaxb3'
include ':retrofit-converters:kotlinx-serialization'
include ':retrofit-converters:moshi'
include ':retrofit-converters:protobuf'
include ':retrofit-converters:scalars'
include ':retrofit-converters:simplexml'
include ':retrofit-converters:wire'
include ':samples'
enableFeaturePreview('TYPESAFE_PROJECT_ACCESSORS')