6 Commits

Author SHA1 Message Date
hlaeja
4776f49fde [RELEASE] - Release version: 0.12.0 2025-08-18 10:26:37 +00:00
0d416e4402 update release type 2025-08-18 12:25:57 +02:00
e3498099f4 add kafka and uuid v7 generator 2025-08-18 11:57:25 +02:00
b3d9b6f767 add hlaeja-common-plugin ui-service 2025-08-18 11:57:25 +02:00
e308491917 update git action 2025-07-29 23:19:45 +02:00
hlaeja
9ce9cc5004 [RELEASE] - Bump version 2025-07-29 16:13:32 +00:00
2 changed files with 12 additions and 5 deletions

View File

@@ -1 +1 @@
version=0.11.0
version=0.12.0

View File

@@ -11,11 +11,11 @@ jsonwebtoken = "0.12.6"
springframeworkBoot = "3.5.4"
# hlaeja version
hlaejaCorePlugin = "0.3.0"
hlaejaCommonPlugin = "0.3.0"
hlaejaCommonMessages = "0.9.0"
hlaejaCorePlugin = "0.4.0"
hlaejaCommonPlugin = "0.4.0"
hlaejaCommonMessages = "0.10.0"
hlaejaJwt = "0.2.0"
hlaejaTest = "0.3.0"
hlaejaTest = "0.4.0"
[libraries]
@@ -24,6 +24,7 @@ jjwt-api = { group = "io.jsonwebtoken", name = "jjwt-api", version.ref = "jsonwe
jjwt-impl = { group = "io.jsonwebtoken", name = "jjwt-impl", version.ref = "jsonwebtoken" }
jjwt-jackson = { group = "io.jsonwebtoken", name = "jjwt-jackson", version.ref = "jsonwebtoken"}
kotlin-logging = { group = "io.github.oshai", name = "kotlin-logging-jvm", version = "7.0.7" }
fasterxml-uuid-generator = { group = "com.fasterxml.uuid", name = "java-uuid-generator", version = "5.1.0" }
fasterxml-jackson-module-kotlin = { group = "com.fasterxml.jackson.module", name = "jackson-module-kotlin" }
kotlin-reflect = { group = "org.jetbrains.kotlin", name = "kotlin-reflect" }
@@ -31,6 +32,7 @@ kotlinx-coroutines = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutin
postgresql = { group = "org.postgresql", name = "postgresql" }
postgresql-r2dbc = { group = "org.postgresql", name = "r2dbc-postgresql" }
projectreactor-kotlin-reactor-extensions = { group = "io.projectreactor.kotlin", name = "reactor-kotlin-extensions" }
springboot-kafka = { group = "org.springframework.kafka", name = "spring-kafka" }
springboot-redis-session = { group = "org.springframework.session", name = "spring-session-data-redis" }
springboot-starter = { group = "org.springframework.boot", name = "spring-boot-starter" }
springboot-starter-actuator = { group = "org.springframework.boot", name = "spring-boot-starter-actuator" }
@@ -49,6 +51,7 @@ thymeleaf-spring-security = { group = "org.thymeleaf.extras", name = "thymeleaf-
assertj-core = { group = "org.assertj", name = "assertj-core", version = "3.27.3" }
mockk = { group = "io.mockk", name = "mockk", version = "1.14.5" }
testcontainers-junit = { group = "org.testcontainers", name = "junit-jupiter" }
testcontainers-kafka = { group = "org.testcontainers", name = "kafka" }
testcontainers-postgresql = { group = "org.testcontainers", name = "postgresql" }
junit-jupiter-params = { group = "org.junit.jupiter", name = "junit-jupiter-params" }
junit-platform-launcher = { group = "org.junit.platform", name = "junit-platform-launcher" }
@@ -56,6 +59,7 @@ kotlin-test = { group = "org.jetbrains.kotlin", name = "kotlin-test", version.re
kotlin-test-junit5 = { group = "org.jetbrains.kotlin", name = "kotlin-test-junit5" }
kotlinx-coroutines-test = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-test" }
projectreactor-reactor-test = { group = "io.projectreactor", name = "reactor-test" }
springboot-kafka-test = { group = "org.springframework.kafka", name = "spring-kafka-test" }
springboot-starter-test = { group = "org.springframework.boot", name = "spring-boot-starter-test" }
# plugin core dependencies
@@ -74,6 +78,7 @@ library-common-messages = { group = "ltd.hlaeja.library", name = "hlaeja-common-
library-jwt = { group = "ltd.hlaeja.library", name = "hlaeja-jwt", version.ref = "hlaejaJwt" }
library-test = { group = "ltd.hlaeja.library", name = "hlaeja-test", version.ref = "hlaejaTest" }
[plugins]
gradle-detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "arturboschDetektPlugin" }
gradle-docker = { id = "com.bmuschko.docker-spring-boot-application", version.ref = "bmuschkoDocker" }
@@ -96,3 +101,5 @@ service-container = { id = "ltd.hlaeja.plugin.hlaeja-common-plugin.service-conta
service-integration-test = { id = "ltd.hlaeja.plugin.hlaeja-common-plugin.service-integration-test", version.ref = "hlaejaCommonPlugin" }
service-process-resource = { id = "ltd.hlaeja.plugin.hlaeja-common-plugin.service-process-resource", version.ref = "hlaejaCommonPlugin" }
certificate = { id = "ltd.hlaeja.plugin.hlaeja-common-plugin.certificate", version.ref = "hlaejaCommonPlugin" }
ui-service = { id = "ltd.hlaeja.plugin.hlaeja-common-plugin.ui-service", version.ref = "hlaejaCommonPlugin" }
ui-service-thymeleaf-minify = { id = "ltd.hlaeja.plugin.hlaeja-common-plugin.ui-service-thymeleaf-minify", version.ref = "hlaejaCommonPlugin" }