-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle
25 lines (20 loc) · 949 Bytes
/
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
rootProject.name = 'google-translate'
dependencyResolutionManagement {
versionCatalogs {
libs {
version("lombok", "1.18.36")
version("annotations", "23.0.0")
version("junit", "5.8.2")
version("jackson", "2.18.2")
version("immutables", "2.10.1")
library("lombok", "org.projectlombok", "lombok").versionRef("lombok")
library("immutables", "org.immutables", "value").versionRef("immutables")
library("jackson-databind", "com.fasterxml.jackson.core", "jackson-databind").versionRef("jackson")
library("jetbrains-annotations", "org.jetbrains", "annotations").versionRef("annotations")
library("junit-engine", "org.junit.jupiter", "junit-jupiter-engine").versionRef("junit")
library("junit-api", "org.junit.jupiter", "junit-jupiter-api").versionRef("junit")
}
}
}
include 'api'
include 'google'