mirror of
https://gitee.com/y_project/RuoYi-Cloud.git
synced 2026-01-31 05:51:56 +08:00
都运行成功,除了getaway模块
This commit is contained in:
@@ -3,9 +3,9 @@ buildscript {
|
||||
maven { url "https://plugins.gradle.org/m2/" }
|
||||
}
|
||||
ext {
|
||||
springBoot = "2.4.0"
|
||||
springBoot = "2.3.4.RELEASE"
|
||||
alibabaCloud = "2.2.3.RELEASE"
|
||||
springCloud = "2.2.6.RELEASE"
|
||||
springCloud = "2.2.5.RELEASE"
|
||||
}
|
||||
dependencies {
|
||||
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBoot}")
|
||||
@@ -16,39 +16,41 @@ buildscript {
|
||||
ext {
|
||||
devVersion = "dev-9-SNAPSHOT"
|
||||
}
|
||||
|
||||
description = "ruoyi-api-system"
|
||||
apply from: "../build-config/build-all.gradle"
|
||||
apply from: "../build-config/build-base.gradle"
|
||||
apply from: "../build-config/build-boot-jar.gradle"
|
||||
|
||||
group = "com.ruoyi"
|
||||
archivesBaseName = "${project.name}"
|
||||
|
||||
archivesBaseName = "project-${project.name}"
|
||||
dependencies {
|
||||
implementation "com.ruoyi:ruoyi-api-system:${devVersion}"
|
||||
implementation "com.ruoyi:ruoyi-common-core:${devVersion}"
|
||||
implementation "com.ruoyi:ruoyi-common-redis:${devVersion}"
|
||||
implementation "com.ruoyi:ruoyi-common-security:${devVersion}"
|
||||
implementation "com.ruoyi:ruoyi-api-system:${devVersion}"
|
||||
|
||||
|
||||
implementation "com.github.penggle:kaptcha:2.3.2"
|
||||
implementation "io.springfox:springfox-swagger2:2.9.2"
|
||||
implementation "io.springfox:springfox-swagger-ui:2.9.2"
|
||||
|
||||
|
||||
implementation "com.alibaba.csp:sentinel-datasource-nacos:1.8.0"
|
||||
|
||||
|
||||
implementation "org.springframework.boot:spring-boot-starter-actuator:${springBoot}"
|
||||
implementation "org.springframework.boot:spring-boot-starter-data-redis:${springBoot}"
|
||||
|
||||
implementation "org.springframework.cloud:spring-cloud-starter-gateway:${springCloud}"
|
||||
|
||||
// compile "com.alibaba.cloud:spring-cloud-alibaba-dependencies:${alibabaCloud}"
|
||||
implementation "com.alibaba.cloud:spring-cloud-alibaba-sentinel-gateway:${alibabaCloud}"
|
||||
implementation "com.alibaba.cloud:spring-cloud-starter-alibaba-sentinel:${alibabaCloud}"
|
||||
implementation "com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-config:${alibabaCloud}"
|
||||
implementation "com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-discovery:${alibabaCloud}"
|
||||
implementation "com.alibaba.cloud:spring-cloud-alibaba-sentinel-gateway:${alibabaCloud}"
|
||||
|
||||
implementation "org.springframework.boot:spring-boot-starter-actuator:${springBoot}"
|
||||
implementation "org.springframework.boot:spring-boot-starter-data-redis:${springBoot}"
|
||||
implementation "org.springframework.boot:spring-boot-autoconfigure:${springBoot}"
|
||||
|
||||
// compile "org.springframework.cloud:spring-cloud-dependencies:Hoxton.SR8"
|
||||
implementation("org.springframework.cloud:spring-cloud-starter-gateway:${springCloud}") {
|
||||
exclude group: "org.springframework.boot", module: "spring-boot-starter-web"
|
||||
exclude group: "org.springframework.boot", module: "spring-boot-starter-webflux"
|
||||
}
|
||||
// implementation "org.springframework.boot:spring-boot-starter-webflux:${springBoot}"
|
||||
}
|
||||
|
||||
static def getGitVersion() {
|
||||
|
||||
Reference in New Issue
Block a user