|
@@ -15,6 +15,7 @@ buildscript {
|
|
|
authVersion = '1.2'
|
|
|
shiro_version = '1.4.0'
|
|
|
swagger_version = '2.7.0'
|
|
|
+ nacosVersion='2.1.0.RELEASE'
|
|
|
}
|
|
|
repositories {
|
|
|
maven { url 'https://maven.aliyun.com/repository/central' }
|
|
@@ -74,6 +75,8 @@ subprojects {
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
+
|
|
|
+ testCompile('org.springframework.boot:spring-boot-starter-test')
|
|
|
// Kotlin
|
|
|
compile("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version")
|
|
|
compile("org.jetbrains.kotlin:kotlin-reflect:$kotlin_version")
|
|
@@ -81,7 +84,8 @@ subprojects {
|
|
|
kapt("org.springframework.boot:spring-boot-configuration-processor")
|
|
|
// SpringBoot Starter
|
|
|
compile 'org.springframework.cloud:spring-cloud-starter-bus-amqp'
|
|
|
- compile('org.springframework.boot:spring-boot-starter-web')
|
|
|
+ compile('org.springframework.boot:spring-boot-starter-webflux')
|
|
|
+
|
|
|
compile('org.springframework.boot:spring-boot-starter-thymeleaf')
|
|
|
|
|
|
compile('org.springframework.cloud:spring-cloud-config-server')
|
|
@@ -101,16 +105,11 @@ subprojects {
|
|
|
compile("commons-io:commons-io:$commons_io_version")
|
|
|
compile("org.apache.commons:commons-lang3:$commons_lang3_version")
|
|
|
compile("commons-codec:commons-codec:$commons_codec_version")
|
|
|
-
|
|
|
- compile("cn.gygxzc.cloud:jwt-session:$jwtVersion")
|
|
|
- compile("cn.gygxzc.cloud:tina-auth:$authVersion")
|
|
|
+
|
|
|
compile("io.reactivex.rxjava2:rxjava:$rxJavaVersion")
|
|
|
- compile("org.apache.shiro:shiro-spring:$shiro_version")
|
|
|
|
|
|
// logger
|
|
|
compile("org.slf4j:slf4j-api:$slf4j_api_version")
|
|
|
- compile("javax.servlet:javax.servlet-api:3.1.0")
|
|
|
- compile("javax.servlet:servlet-api:2.5")
|
|
|
|
|
|
compile("mysql:mysql-connector-java:$mysql_connector_version")
|
|
|
compile("com.baomidou:mybatis-plus-boot-starter:$mybatisPlusVersion")
|
|
@@ -119,11 +118,6 @@ subprojects {
|
|
|
compile("io.springfox:springfox-swagger2:$swagger_version")
|
|
|
compile("io.springfox:springfox-swagger-ui:$swagger_version")
|
|
|
|
|
|
- compile 'io.jsonwebtoken:jjwt-api:0.10.5'
|
|
|
- runtime 'io.jsonwebtoken:jjwt-impl:0.10.5',
|
|
|
- 'io.jsonwebtoken:jjwt-jackson:0.10.5'
|
|
|
-
|
|
|
-
|
|
|
ext.jarTree = fileTree(dir: 'libs', include: '**/*.jar')
|
|
|
compile jarTree
|
|
|
}
|