Compare commits
5 Commits
feature/ba
...
dbe18c964c
| Author | SHA1 | Date | |
|---|---|---|---|
| dbe18c964c | |||
| e313ca216b | |||
| 685a9b2aac | |||
|
|
168d6f480a | ||
|
|
9b007c7b59 |
@@ -4,7 +4,6 @@ kotlin = "2.0.21"
|
|||||||
|
|
||||||
# Spring boot
|
# Spring boot
|
||||||
springframework = "3.5.5"
|
springframework = "3.5.5"
|
||||||
dependencyManagement = "1.1.7"
|
|
||||||
|
|
||||||
# third party plugin
|
# third party plugin
|
||||||
detekt = "1.23.8"
|
detekt = "1.23.8"
|
||||||
@@ -13,10 +12,7 @@ ktlint = "12.3.0"
|
|||||||
|
|
||||||
# lulz plugin
|
# lulz plugin
|
||||||
lulzCore = "0.1.0"
|
lulzCore = "0.1.0"
|
||||||
lulzCommon = "0.1.0"
|
lulzCommon = "0.1.0-SNAPSHOT"
|
||||||
|
|
||||||
#lulz library
|
|
||||||
lulzTest = "0.1.0-SNAPSHOT"
|
|
||||||
|
|
||||||
|
|
||||||
[libraries]
|
[libraries]
|
||||||
@@ -31,33 +27,14 @@ plugin-kotlin = { group = "org.jetbrains.kotlin", name = "kotlin-gradle-plugin",
|
|||||||
plugin-ktlint = { group = "org.jlleitschuh.gradle", name = "ktlint-gradle", version.ref = "ktlint" }
|
plugin-ktlint = { group = "org.jlleitschuh.gradle", name = "ktlint-gradle", version.ref = "ktlint" }
|
||||||
plugin-springboot = { group = "org.springframework.boot", name = "spring-boot-gradle-plugin", version.ref = "springframework" }
|
plugin-springboot = { group = "org.springframework.boot", name = "spring-boot-gradle-plugin", version.ref = "springframework" }
|
||||||
|
|
||||||
# Spring boot starters
|
|
||||||
springboot-starter-actuator = { group = "org.springframework.boot", name = "spring-boot-starter-actuator" }
|
|
||||||
springboot-starter-r2dbc = { group = "org.springframework.boot", name = "spring-boot-starter-data-r2dbc" }
|
|
||||||
springboot-starter-test = { group = "org.springframework.boot", name = "spring-boot-starter-test" }
|
|
||||||
springboot-starter-validation = { group = "org.springframework.boot", name = "spring-boot-starter-validation" }
|
|
||||||
springboot-starter-webflux = { group = "org.springframework.boot", name = "spring-boot-starter-webflux" }
|
|
||||||
|
|
||||||
# third party
|
# third party
|
||||||
fasterxml-jackson = { group = "com.fasterxml.jackson.module", name = "jackson-module-kotlin" }
|
|
||||||
kotlin-logging = { group = "io.github.oshai", name = "kotlin-logging-jvm", version = "7.0.7" }
|
|
||||||
kotlin-reflect = { group = "org.jetbrains.kotlin", name = "kotlin-reflect" }
|
|
||||||
kotlinx-coroutines = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-reactor" }
|
|
||||||
postgresql = { group = "org.postgresql", name = "postgresql" }
|
|
||||||
postgresql-r2dbc = { group = "org.postgresql", name = "r2dbc-postgresql" }
|
|
||||||
|
|
||||||
# third party testing
|
# third party testing
|
||||||
assertj = { group = "org.assertj", name = "assertj-core", version = "3.27.3" }
|
assertj = { group = "org.assertj", name = "assertj-core", version = "3.27.3" }
|
||||||
junit-jupiter-params = { group = "org.junit.jupiter", name = "junit-jupiter-params" }
|
junit-jupiter-params = { group = "org.junit.jupiter", name = "junit-jupiter-params" }
|
||||||
junit-platform-launcher = { group = "org.junit.platform", name = "junit-platform-launcher" }
|
junit-platform-launcher = { group = "org.junit.platform", name = "junit-platform-launcher" }
|
||||||
kotlin-junit5 = { group = "org.jetbrains.kotlin", name = "kotlin-test-junit5" }
|
kotlin-junit5 = { group = "org.jetbrains.kotlin", name = "kotlin-test-junit5" }
|
||||||
kotlinx-coroutines-test = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-test" }
|
|
||||||
mockk = { group = "io.mockk", name = "mockk", version = "1.14.5" }
|
mockk = { group = "io.mockk", name = "mockk", version = "1.14.5" }
|
||||||
reactor-test = { group = "io.projectreactor", name = "reactor-test" }
|
|
||||||
testcontainers-postgresql = { group = "org.testcontainers", name = "postgresql" }
|
|
||||||
|
|
||||||
# lulz
|
|
||||||
library-test-integration = { group = "ltd.lulz.library", name = "test-integration", version.ref = "lulzTest" }
|
|
||||||
|
|
||||||
|
|
||||||
[plugins]
|
[plugins]
|
||||||
@@ -65,9 +42,6 @@ library-test-integration = { group = "ltd.lulz.library", name = "test-integratio
|
|||||||
gradle-detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" }
|
gradle-detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" }
|
||||||
gradle-ktlint = { id = "org.jlleitschuh.gradle.ktlint", version.ref = "ktlint" }
|
gradle-ktlint = { id = "org.jlleitschuh.gradle.ktlint", version.ref = "ktlint" }
|
||||||
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
|
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
|
||||||
kotlin-spring = { id = "org.jetbrains.kotlin.plugin.spring", version.ref = "kotlin" }
|
|
||||||
spring-boot = { id = "org.springframework.boot", version.ref = "springframework" }
|
|
||||||
spring-dependency-management = { id = "io.spring.dependency-management", version.ref = "dependencyManagement" }
|
|
||||||
|
|
||||||
# lulz
|
# lulz
|
||||||
core = { id = "ltd.lulz.plugin.core-plugin", version.ref = "lulzCore" }
|
core = { id = "ltd.lulz.plugin.core-plugin", version.ref = "lulzCore" }
|
||||||
|
|||||||
Reference in New Issue
Block a user