-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
53 lines (43 loc) · 2.67 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
53 lines (43 loc) · 2.67 KB
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
rootProject.name = "rep-bot"
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version ("1.0.0")
}
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
// misc
version("sadu", "2.3.2")
library("sadu-queries", "de.chojo.sadu", "sadu-queries").versionRef("sadu")
library("sadu-updater", "de.chojo.sadu", "sadu-updater").versionRef("sadu")
library("sadu-postgresql", "de.chojo.sadu", "sadu-postgresql").versionRef("sadu")
library("sadu-datasource", "de.chojo.sadu", "sadu-datasource").versionRef("sadu")
bundle("sadu", listOf("sadu-queries", "sadu-updater", "sadu-postgresql", "sadu-datasource"))
version("log4j", "2.25.1")
library("slf4j-api", "org.slf4j:slf4j-api:2.0.17")
library("log4j-core", "org.apache.logging.log4j", "log4j-core").versionRef("log4j")
library("log4j-slf4j2", "org.apache.logging.log4j", "log4j-slf4j2-impl").versionRef("log4j")
library("log4j-jsontemplate", "org.apache.logging.log4j", "log4j-layout-template-json").versionRef("log4j")
bundle("log4j", listOf("slf4j-api", "log4j-core", "log4j-slf4j2", "log4j-jsontemplate"))
// plugins
plugin("spotless", "com.diffplug.spotless").version("7.2.1")
plugin("shadow", "com.gradleup.shadow").version("9.0.2")
}
create("testlibs") {
version("junit", "5.13.4")
library("junit-jupiter", "org.junit.jupiter", "junit-jupiter").versionRef("junit")
library("junit-params", "org.junit.jupiter", "junit-jupiter-params").versionRef("junit")
bundle("junit", listOf("junit-jupiter", "junit-params", "slf4j-simple"))
version("sadu", "2.3.2")
library("sadu-testing", "de.chojo.sadu", "sadu-testing").versionRef("sadu")
version("testcontainers", "1.21.3")
library("testcontainers-postgres", "org.testcontainers", "postgresql").versionRef("testcontainers")
library("testcontainers-core", "org.testcontainers", "testcontainers").versionRef("testcontainers")
library("testcontainers-junit", "org.testcontainers", "junit-jupiter").versionRef("testcontainers")
version("slf4j", "2.0.17")
library("slf4j-noop", "org.slf4j", "slf4j-nop").versionRef("slf4j")
library("slf4j-simple", "org.slf4j", "slf4j-simple").versionRef("slf4j")
library("driver-postgres", "org.postgresql:postgresql:42.7.7")
bundle("database-postgres", listOf("testcontainers-junit", "testcontainers-core", "testcontainers-postgres", "driver-postgres"))
}
}
}