-
Notifications
You must be signed in to change notification settings - Fork 10
/
settings.gradle.kts
75 lines (62 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
72
73
74
75
rootProject.name = "sadu"
include("sadu-core")
include("sadu-sqlite")
include("sadu-postgresql")
include("sadu-mariadb")
include("sadu-mysql")
include("sadu-datasource")
include("sadu-queries")
include("sadu-updater")
include("sadu-mapper")
include("sadu-examples")
include("sadu-testing")
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
maven {
name = "EldoNexus"
url = uri("https://eldonexus.de/repository/maven-public/")
}
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version ("0.8.0")
}
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
// plugins
plugin("spotless", "com.diffplug.spotless").version("6.25.0")
plugin("shadow", "com.github.johnrengelman.shadow").version("8.1.1")
version("indra", "3.1.3")
plugin("indra-core", "net.kyori.indra").versionRef("indra")
plugin("indra-publishing", "net.kyori.indra.publishing").versionRef("indra")
plugin("indra-sonatype", "net.kyori.indra.publishing.sonatype").versionRef("indra")
version("slf4j", "2.0.16")
library("slf4j-api", "org.slf4j", "slf4j-api").versionRef("slf4j")
}
create("testlibs") {
version("junit", "5.11.0")
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("testcontainers", "1.20.1")
library("testcontainers-postgres", "org.testcontainers", "postgresql").versionRef("testcontainers")
library("testcontainers-mariadb", "org.testcontainers", "mariadb").versionRef("testcontainers")
library("testcontainers-mysql", "org.testcontainers", "mysql").versionRef("testcontainers")
library("testcontainers-core", "org.testcontainers", "testcontainers").versionRef("testcontainers")
library("testcontainers-junit", "org.testcontainers", "junit-jupiter").versionRef("testcontainers")
version("slf4j", "2.0.16")
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.4")
library("driver-mariadb", "org.mariadb.jdbc:mariadb-java-client:3.4.1")
library("driver-sqlite", "org.xerial:sqlite-jdbc:3.46.1.0")
library("driver-mysql", "com.mysql:mysql-connector-j:9.0.0")
bundle("database-postgres", listOf("testcontainers-junit", "testcontainers-core", "testcontainers-postgres", "driver-postgres"))
bundle("database-mariadb", listOf("testcontainers-junit", "testcontainers-core", "testcontainers-mariadb", "driver-mariadb"))
bundle("database-mysql", listOf("testcontainers-junit", "testcontainers-core", "testcontainers-mysql", "driver-mysql"))
}
}
}