6 Commits

Author SHA1 Message Date
Aura Ascend
563cf982cb [RELEASE] - Bump version 2025-09-13 10:28:19 +00:00
Aura Ascend
76ebb28c0c [RELEASE] - Release version: 0.1.0 2025-09-13 10:28:15 +00:00
47c3045967 template library and service
(cherry picked from commit d92862b1bd)
2025-09-13 12:20:36 +02:00
ee5121f735 common plugin extend service
(cherry picked from commit dbe18c964c)
2025-09-13 12:20:22 +02:00
e11a152451 common plugin extend library
(cherry picked from commit e313ca216b)
2025-09-13 12:20:11 +02:00
81e2ed266b common plugin extend common
(cherry picked from commit 685a9b2aac)
2025-09-13 12:20:06 +02:00

View File

@@ -4,6 +4,7 @@ kotlin = "2.0.21"
# Spring boot
springframework = "3.5.5"
dependencyManagement = "1.1.7"
# third party plugin
detekt = "1.23.8"
@@ -12,7 +13,7 @@ ktlint = "12.3.0"
# lulz plugin
lulzCore = "0.1.0"
lulzCommon = "0.1.0-SNAPSHOT"
lulzCommon = "0.1.0"
[libraries]
@@ -27,13 +28,23 @@ plugin-kotlin = { group = "org.jetbrains.kotlin", name = "kotlin-gradle-plugin",
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" }
# Spring boot starters
springboot-starter-actuator = { group = "org.springframework.boot", name = "spring-boot-starter-actuator" }
springboot-starter-webflux = { group = "org.springframework.boot", name = "spring-boot-starter-webflux" }
springboot-starter-test = { group = "org.springframework.boot", name = "spring-boot-starter-test" }
# 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" }
# third party testing
assertj = { group = "org.assertj", name = "assertj-core", version = "3.27.3" }
junit-jupiter-params = { group = "org.junit.jupiter", name = "junit-jupiter-params" }
junit-platform-launcher = { group = "org.junit.platform", name = "junit-platform-launcher" }
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" }
@@ -42,6 +53,9 @@ mockk = { group = "io.mockk", name = "mockk", version = "1.14.5" }
gradle-detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" }
gradle-ktlint = { id = "org.jlleitschuh.gradle.ktlint", version.ref = "ktlint" }
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
core = { id = "ltd.lulz.plugin.core-plugin", version.ref = "lulzCore" }