All checks were successful
CI/CD Pipeline / build-and-deploy (push) Successful in 6m46s
- 将 forgeBoot版本从 "1.2.0-SNAPSHOT" 修改为 "1.2.0" -此更新统一了 maven 和 git 的版本号,确保版本一致性
70 lines
4.0 KiB
TOML
70 lines
4.0 KiB
TOML
[versions]
|
|
kotlin-version = "2.0.0"
|
|
spring-cloud-version = "2023.0.5"
|
|
spring-boot-version = "3.2.4"
|
|
spring-dependency-management-version = "1.1.7"
|
|
aliyun-bailian-version = "2.0.0"
|
|
spring-cloud-starter-alibaba-nacos-discovery-version = "2023.0.1.0"
|
|
forgeBoot-version = "1.2.0"
|
|
okHttp-version = "4.12.0"
|
|
jib-version = "3.4.2"
|
|
org-reactivestreams-reactiveStreams-version = "1.0.4"
|
|
[plugins]
|
|
# 应用 Java 插件,提供基本的 Java 代码编译和构建能力
|
|
java = { id = "java" }
|
|
|
|
# 应用 Gradle 基础插件,提供项目的基础配置和插件管理能力
|
|
javaGradle-plugin = { id = "java-gradle-plugin" }
|
|
|
|
# 引入 Kotlin 支持
|
|
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin-version" }
|
|
# 支持 Spring 的 Kotlin 插件
|
|
kotlin-plugin-spring = { id = "org.jetbrains.kotlin.plugin.spring", version.ref = "kotlin-version" }
|
|
|
|
# Spring 依赖管理插件,简化依赖版本管理
|
|
spring-dependency-management = { id = "io.spring.dependency-management", version.ref = "spring-dependency-management-version" }
|
|
# 应用 Spring Boot 插件,提供 Spring Boot 应用的开发和运行能力
|
|
spring-boot = { id = "org.springframework.boot", version.ref = "spring-boot-version" }
|
|
|
|
jib = { id = "com.google.cloud.tools.jib", version.ref = "jib-version" }
|
|
jibLocalPlugin = { id = "org.jcnc.llmx.plugin.jib" }
|
|
[libraries]
|
|
jib-gradlePlugin = { module = "com.google.cloud.tools.jib:com.google.cloud.tools.jib.gradle.plugin", version.ref = "jib-version" }
|
|
# bom
|
|
springCloudDependencies-bom = { group ="org.springframework.cloud",name = "spring-cloud-dependencies", version.ref = "spring-cloud-version" }
|
|
springBootDependencies-bom = { module = "org.springframework.boot:spring-boot-dependencies", version.ref = "spring-boot-version" }
|
|
# kotlinx
|
|
# 响应式协程库
|
|
kotlinx-coruntes-reactor = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-reactor" }
|
|
|
|
# 阿里云百炼
|
|
aliyun-bailian = { group = "com.aliyun", name = "bailian20231229", version.ref = "aliyun-bailian-version" }
|
|
|
|
# SrpingCloud
|
|
springCloudStarter-alibaba-nacos-discovery = { group = "com.alibaba.cloud", name = "spring-cloud-starter-alibaba-nacos-discovery", version.ref = "spring-cloud-starter-alibaba-nacos-discovery-version" }
|
|
springCloudStarter-loadbalancer = { group = "org.springframework.cloud", name = "spring-cloud-starter-loadbalancer" }
|
|
springCloudStarter-openfeign = { group = "org.springframework.cloud", name = "spring-cloud-starter-openfeign" }
|
|
|
|
# SpringBootStarter
|
|
springBootStarter-webflux = { group = "org.springframework.boot", name = "spring-boot-starter-webflux" }
|
|
springBootStarter-web = { group = "org.springframework.boot", name = "spring-boot-starter-web" }
|
|
springBootStarter-test = { group = "org.springframework.boot", name = "spring-boot-starter-test" }
|
|
|
|
junitPlatform-launcher = { group = "org.junit.platform", name = "junit-platform-launcher" }
|
|
|
|
# org-reactivestreams
|
|
org-reactivestreams-reactiveStreams = { group = "org.reactivestreams", name = "reactive-streams" ,version.ref="org-reactivestreams-reactiveStreams-version"}
|
|
# OkHttp
|
|
okHttp = { group = "com.squareup.okhttp3", name = "okhttp", version.ref = "okHttp-version" }
|
|
# forgeBoot
|
|
forgeBoot-webmvc-version-springBootStarter = { group = "com.gewuyou.forgeboot", name = "forgeboot-webmvc-version-spring-boot-starter", version.ref = "forgeBoot-version" }
|
|
forgeBoot-i18n-springBootStarter = { group = "com.gewuyou.forgeboot", name = "forgeboot-i18n-spring-boot-starter", version.ref = "forgeBoot-version" }
|
|
forgeBoot-core-extension = { group = "com.gewuyou.forgeboot", name = "forgeboot-core-extension", version.ref = "forgeBoot-version" }
|
|
|
|
jackson-core={group="com.fasterxml.jackson.core", name="jackson-core"}
|
|
jackson-databind={group="com.fasterxml.jackson.core", name="jackson-databind"}
|
|
jackson-annotations={group="com.fasterxml.jackson.core", name="jackson-annotations"}
|
|
jackson-datatype-jsr310={group="com.fasterxml.jackson.datatype", name="jackson-datatype-jsr310"}
|
|
jackson-module-kotlin={group="com.fasterxml.jackson.module", name="jackson-module-kotlin"}
|
|
[bundles]
|