|
@@ -1,26 +1,21 @@
|
|
|
-group 'com.gxzc.zen'
|
|
|
-version '1.0-SNAPSHOT'
|
|
|
+allprojects {
|
|
|
+ group 'com.gxzc.zen'
|
|
|
+ version '1.0-SNAPSHOT'
|
|
|
+}
|
|
|
|
|
|
buildscript {
|
|
|
ext {
|
|
|
kotlin_version = '1.2.21'
|
|
|
-
|
|
|
spring_boot_version = '1.5.10.RELEASE'
|
|
|
-
|
|
|
junit_version = '4.12'
|
|
|
-
|
|
|
commons_io_version = '2.5'
|
|
|
commons_lang3_version = '3.5'
|
|
|
commons_codec_version = '1.10'
|
|
|
commons_fileupload_version = '1.3.2'
|
|
|
-
|
|
|
slf4j_api_version = '1.7.25'
|
|
|
-
|
|
|
ehcache_version = '3.4.0'
|
|
|
ehcache_core_version = '2.6.11'
|
|
|
-
|
|
|
mysql_connector_version = '5.1.45'
|
|
|
-
|
|
|
alidruid_version = '1.1.6'
|
|
|
mybatis_plus_version = '2.1.8'
|
|
|
mybatis_plus_boot_version = '1.0.5'
|
|
@@ -30,9 +25,8 @@ buildscript {
|
|
|
swagger_version = '2.7.0'
|
|
|
fastjson_version = '1.2.44'
|
|
|
pinyin4j_version = '2.5.1'
|
|
|
-
|
|
|
kisso_version = '3.7.0'
|
|
|
- // caffeine_version = 'a'
|
|
|
+ caffeine_version = '2.6.1'
|
|
|
}
|
|
|
repositories {
|
|
|
mavenCentral()
|
|
@@ -44,22 +38,21 @@ buildscript {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-allprojects {}
|
|
|
-
|
|
|
-
|
|
|
subprojects {
|
|
|
apply plugin: 'java'
|
|
|
apply plugin: 'kotlin'
|
|
|
apply plugin: 'kotlin-spring'
|
|
|
apply plugin: 'org.springframework.boot'
|
|
|
+
|
|
|
sourceCompatibility = 1.8
|
|
|
targetCompatibility = 1.8
|
|
|
|
|
|
+ [compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8'
|
|
|
+
|
|
|
repositories {
|
|
|
mavenCentral()
|
|
|
jcenter()
|
|
|
}
|
|
|
-
|
|
|
dependencies {
|
|
|
// Kotlin
|
|
|
compile("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version")
|
|
@@ -89,13 +82,13 @@ subprojects {
|
|
|
compile("javax.servlet:servlet-api:2.5")
|
|
|
|
|
|
// cache
|
|
|
- compile('com.github.ben-manes.caffeine:caffeine')
|
|
|
+ compile("com.github.ben-manes.caffeine:caffeine:$caffeine_version")
|
|
|
// compile("org.ehcache:ehcache:$ehcache_version")
|
|
|
// compile("net.sf.ehcache:ehcache-core:$ehcache_core_version")
|
|
|
|
|
|
// db
|
|
|
compile("mysql:mysql-connector-java:$mysql_connector_version")
|
|
|
- compile("com.alibaba:druid-spring-boot-starter:1.1.6")
|
|
|
+ compile("com.alibaba:druid-spring-boot-starter:$alidruid_version")
|
|
|
// compile("io.shardingjdbc:sharding-jdbc-core-spring-boot-starter:2.0.2")
|
|
|
|
|
|
// mybatis-plus
|
|
@@ -115,6 +108,7 @@ subprojects {
|
|
|
compile("com.github.penggle:kaptcha:2.3.2")
|
|
|
compile("com.alibaba:fastjson:$fastjson_version")
|
|
|
compile("com.belerweb:pinyin4j:$pinyin4j_version")
|
|
|
+ compile('com.github.hotchemi:khronos:0.9.0')
|
|
|
|
|
|
// sso
|
|
|
compile("com.baomidou:kisso:$kisso_version")
|
|
@@ -126,6 +120,11 @@ subprojects {
|
|
|
|
|
|
compile("org.apache.velocity:velocity-engine-core:2.0")
|
|
|
|
|
|
- compile('com.github.hotchemi:khronos:0.9.0')
|
|
|
+ ext.jarTree = fileTree(dir: 'libs', include: '**/*.jar')
|
|
|
+ compile jarTree
|
|
|
+ }
|
|
|
+
|
|
|
+ task listJars(description: 'Display all compile jars.') << {
|
|
|
+ configurations.compile.each { File file -> println file.name }
|
|
|
}
|
|
|
}
|