-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsettings.gradle.kts
71 lines (56 loc) · 3.1 KB
/
settings.gradle.kts
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
63
64
65
66
67
68
69
70
71
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
// https://assertj.github.io/doc/#assertj-core-release-notes
version("assertj", "3.24.2")
// https://developer.android.com/studio/releases/gradle-plugin
// Please update Lint version whenever you update Android Gradle plugin
version("androidGradlePlugin", "7.4.2")
// https://github.com/mannodermaus/android-junit5/releases
version("androidJunit5", "1.9.3.0")
// https://junit.org/junit5/docs/snapshot/release-notes/
version("junit5", "5.9.2")
// https://kotlinlang.org/docs/releases.html#release-details
version("kotlin", "1.8.21")
// https://github.com/mockito/mockito/releases
version("mockito", "4.11.0")
// https://github.com/mockito/mockito-kotlin/releases
version("mockitoKotlin", "4.1.0")
// https://github.com/square/okhttp/blob/master/CHANGELOG.md
version("okhttp", "4.10.0")
version("ohttp-encapsulator-android", "0.0.4")
version("bhttp", "0.0.1")
library("androidGradlePlugin", "com.android.tools.build", "gradle").versionRef("androidGradlePlugin")
library("androidJunit5", "de.mannodermaus.gradle.plugins", "android-junit5").versionRef("androidJunit5")
library("kotlin_gradlePlugin", "org.jetbrains.kotlin", "kotlin-gradle-plugin").versionRef("kotlin")
library("network_okhttp", "com.squareup.okhttp3", "okhttp").versionRef("okhttp")
library("network_okhttp_mockWebServer", "com.squareup.okhttp3", "mockwebserver").versionRef("okhttp")
library("network_ohttpEncapsulator", "health.flo.ohttp", "ohttp-encapsulator-android")
.versionRef("ohttp-encapsulator-android")
library("network_bhttp", "health.flo.network", "ok-bhttp-android")
.versionRef("bhttp")
library("testing_junit5", "org.junit.jupiter", "junit-jupiter-api").versionRef("junit5")
library("testing_junit5_engine", "org.junit.jupiter", "junit-jupiter-engine").versionRef("junit5")
library("testing_junit5_params", "org.junit.jupiter", "junit-jupiter-params").versionRef("junit5")
bundle("testing_junit5", listOf("testing_junit5", "testing_junit5_params"))
library("testing_mockito_core", "org.mockito", "mockito-core").versionRef("mockito")
library("testing_mockito_inline", "org.mockito", "mockito-inline").versionRef("mockito")
library("testing_mockito_kotlin", "org.mockito.kotlin", "mockito-kotlin").versionRef("mockitoKotlin")
bundle(
"testing_mockito",
listOf(
"testing_mockito_core",
"testing_mockito_inline",
"testing_mockito_kotlin",
),
)
library("testing_assertj", "org.assertj", "assertj-core").versionRef("assertj")
}
}
}
plugins {
id("com.gradle.enterprise").version("3.12.3")
}
include(
":lib-bhttp",
)