-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependency.toml
More file actions
33 lines (24 loc) · 1.51 KB
/
dependency.toml
File metadata and controls
33 lines (24 loc) · 1.51 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
[versions]
"kotlin" = "2.1.10"
"ktlint" = "12.1.2"
"junit-jupiter" = "5.10.2"
"junit-platform-launcher" = "1.10.2"
"spring-boot" = "3.4.2"
"spring-management" = "1.1.7"
"exposed" = "0.59.0"
[libraries]
plugin-kotlin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
plugin-ktlint = { module = "org.jlleitschuh.gradle:ktlint-gradle", version.ref = "ktlint" }
kotlin-stdlib = { module = "org.jetbrains.kotlin:kotlin-stdlib" }
kotlin-reflect = { module = "org.jetbrains.kotlin:kotlin-reflect" }
junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit-jupiter" }
junit-platform-launcher = { module = "org.junit.platform:junit-platform-launcher", version.ref = "junit-platform-launcher" }
plugin-spring-boot = { module = "org.springframework.boot:spring-boot-gradle-plugin", version.ref = "spring-boot" }
plugin-spring-management = { module = "io.spring.gradle:dependency-management-plugin", version.ref = "spring-management" }
plugin-kotlin-allopen = { module = "org.jetbrains.kotlin:kotlin-allopen", version.ref = "kotlin" }
plugin-kotlin-noarg = { module = "org.jetbrains.kotlin:kotlin-noarg", version.ref = "kotlin" }
bom-exposed = { module = "org.jetbrains.exposed:exposed-bom", version.ref = "exposed" }
[bundles]
plugins = ["plugin-ktlint", "plugin-kotlin","plugin-spring-boot", "plugin-spring-management", "plugin-kotlin-allopen", "plugin-kotlin-noarg"]
dependencies-kotlin = ["kotlin-stdlib", "kotlin-reflect"]
dependencies-junit = ["junit-jupiter", "junit-platform-launcher"]