都运行成功,除了getaway模块

This commit is contained in:
陈云志
2020-12-18 13:28:13 +08:00
parent 467279cc19
commit b4d580ab79
34 changed files with 1588 additions and 162 deletions

View File

@@ -18,9 +18,7 @@ buildscript {
ext {
devVersion = "dev-9-SNAPSHOT"
springBoot = "2.4.0"
alibabaCloud = "2.2.3.RELEASE"
springCloud = "2.2.6.RELEASE"
// devVersion = "2.3.0"
}
apply from: "../build-config/build-all.gradle"
@@ -30,8 +28,6 @@ subprojects {
apply from: "../../build-config/build-base.gradle"
apply from: "../../build-config/build-publish.gradle"
group = "com.ruoyi"
archivesBaseName = "${project.name}"
}
static def getGitVersion() {

View File

@@ -1,8 +1,7 @@
dependencies {
implementation "org.springframework.cloud:spring-cloud-starter-openfeign:${springCloud}"
implementation "org.springframework.boot:spring-boot-starter-validation:${springBoot}"
implementation "org.springframework.boot:spring-boot-starter-web:${springBoot}"
implementation "com.github.pagehelper:pagehelper-spring-boot-starter:1.3.0"
implementation "com.alibaba:fastjson:1.2.75"
implementation "com.fasterxml.jackson.core:jackson-databind:2.12.0"

View File

@@ -3,8 +3,8 @@ dependencies {
implementation project(":ruoyi-common-core")
implementation project(":ruoyi-common-security")
implementation "com.ruoyi:ruoyi-api-system:${devVersion}"
implementation "com.ruoyi:ruoyi-api-system:${devVersion}"
implementation "org.aspectj:aspectjweaver:1.9.6"
implementation "org.apache.commons:commons-lang3:3.11"
implementation "org.springframework.boot:spring-boot-starter-validation:${springBoot}"

View File

@@ -8,7 +8,6 @@ dependencies {
implementation "org.apache.commons:commons-lang3:3.11"
implementation "org.aspectj:aspectjweaver:1.9.6"
implementation "org.springframework.boot:spring-boot-starter-web:${springBoot}"
implementation "org.springframework.boot:spring-boot-autoconfigure:${springBoot}"
}

View File

@@ -3,14 +3,12 @@ description = "ruoyi-common-security"
dependencies {
implementation project(":ruoyi-common-core")
implementation project(":ruoyi-common-redis")
implementation "com.ruoyi:ruoyi-api-system:${devVersion}"
implementation "javax.servlet:javax.servlet-api:4.0.1"
implementation "org.apache.commons:commons-lang3:3.11"
implementation "org.mybatis.spring.boot:mybatis-spring-boot-starter:2.1.4"
// implementation "org.springframework.boot:spring-boot-autoconfigure:${springBoot}"
implementation "org.springframework.boot:spring-boot-starter-web:${springBoot}"
implementation "org.springframework.boot:spring-boot-starter-security:${springBoot}"
implementation "org.springframework.boot:spring-boot-starter-validation:${springBoot}"
implementation "org.springframework.cloud:spring-cloud-starter-openfeign:${springCloud}"

View File

@@ -1,5 +1,5 @@
dependencies {
implementation "org.springframework.boot:spring-boot-starter-web:2.3.4.RELEASE"
implementation "org.springframework.boot:spring-boot-autoconfigure:${springBoot}"
implementation "io.springfox:springfox-swagger2:2.9.2"
}