This repository has been archived by the owner on Sep 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
55 lines (48 loc) · 2.01 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
rootProject.name = "props"
include("props-core")
include("props-aws")
include("props-mongodb")
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
plugins {
id("com.diffplug.spotless").version("5.17.1")
id("net.ltgt.errorprone").version("2.0.2")
id("me.champeau.jmh").version("0.6.6")
id("org.sonarqube").version("3.3")
id("pmd").version("6.41.0")
id("jacoco").version("0.8.7")
}
}
// For when we will need to define constraints in our dependency tree
// https://docs.gradle.org/current/userguide/dependency_constraints.html#dependency-constraints
// https://docs.gradle.org/current/userguide/platforms.html#header
// https://docs.gradle.org/current/userguide/dependency_version_alignment.html#header
// https://docs.gradle.org/current/userguide/single_versions.html#header
enableFeaturePreview("VERSION_CATALOGS")
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
version("checkstyle", "9.0")
version("junit", "5.8.1")
alias("errorprone").to("com.google.errorprone", "error_prone_core")
.version("2.9.0")
alias("nullaway").to("com.uber.nullaway", "nullaway").version("0.9.2")
alias("junit-jupiter-api").to("org.junit.jupiter", "junit-jupiter-api")
.versionRef("junit")
alias("junit-jupiter-engine").to("org.junit.jupiter", "junit-jupiter-engine")
.versionRef("junit")
alias("junit-jupiter-params").to("org.junit.jupiter", "junit-jupiter-params")
.versionRef("junit")
alias("org-hamcrest-core").to("org.hamcrest:hamcrest-core:2.2")
alias("org-mockito-core").to("org.mockito:mockito-core:4.7.0")
alias("org-awaitility-awaitility").to("org.awaitility:awaitility:4.2.0")
alias("guava").to("com.google.guava:guava:31.1-jre")
}
create("testcontainers") {
version("mongo", "5.0.5-focal")
}
}
}