-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlibs.versions.toml
More file actions
50 lines (42 loc) · 1.43 KB
/
Copy pathlibs.versions.toml
File metadata and controls
50 lines (42 loc) · 1.43 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
[versions]
# plugin
shadow = "9.2.2"
runPaper = "3.0.1"
# library
spigotApi = "1.16.5-R0.1-SNAPSHOT"
configLib = "4.6.3"
mariaDBConnectorJ = "3.5.6"
hikaricp = "7.0.2"
jdbi = "3.49.6"
flyway = "11.14.1"
jspecify = "1.0.0"
junit = "6.0.0"
[plugins]
shadow = { id = "com.gradleup.shadow", version.ref = "shadow" }
runPaper = { id = "xyz.jpenilla.run-paper", version.ref = "runPaper" }
[libraries]
# system
spigotApi = { module = "org.spigotmc:spigot-api", version.ref = "spigotApi" }
# config
configLib = { module = "de.exlll:configlib-yaml", version.ref = "configLib" }
# database
mariaDBConnectorJ = { module = "org.mariadb.jdbc:mariadb-java-client", version.ref = "mariaDBConnectorJ"}
hikaricp = { module = "com.zaxxer:HikariCP", version.ref = "hikaricp" }
jdbiCore = { module = "org.jdbi:jdbi3-core", version.ref = "jdbi" }
jdbiSqlobject = { module = "org.jdbi:jdbi3-sqlobject", version.ref = "jdbi" }
flywayCore = { module = "org.flywaydb:flyway-core", version.ref = "flyway" }
flywayMysql = { module = "org.flywaydb:flyway-mysql", version.ref = "flyway" }
# check
jspecify = { module = "org.jspecify:jspecify", version.ref = "jspecify" }
junitBom = { module = "org.junit:junit-bom", version.ref = "junit" }
junitJupiter = { module = "org.junit.jupiter:junit-jupiter" }
junitPlatformLauncher = { module = "org.junit.platform:junit-platform-launcher" }
[bundles]
jdbi = [
"jdbiCore",
"jdbiSqlobject"
]
flyway = [
"flywayCore",
"flywayMysql"
]