build.gradle 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. buildscript {
  2. ext {
  3. kotlin_version = '1.3.10'
  4. springBootVersion = '2.1.4.RELEASE'
  5. junit_version = '4.12'
  6. commons_io_version = '2.5'
  7. commons_lang3_version = '3.5'
  8. commons_codec_version = '1.10'
  9. commons_fileupload_version = '1.3.2'
  10. mysql_connector_version = '5.1.45'
  11. mybatisPlusVersion = '3.0.3'
  12. slf4j_api_version = '1.7.25'
  13. rxJavaVersion='2.2.3'
  14. jwtVersion = '1.4.0'
  15. authVersion='1.2'
  16. shiro_version = '1.4.0'
  17. swagger_version = '2.7.0'
  18. }
  19. repositories {
  20. mavenCentral()
  21. maven { url = 'http://repo.spring.io/plugins-release' }
  22. }
  23. dependencies {
  24. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  25. classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
  26. classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
  27. }
  28. }
  29. allprojects {
  30. group = "cn.gygxzc.cloud.tina"
  31. version = "2.0"
  32. }
  33. subprojects {
  34. apply plugin: 'java'
  35. apply plugin: 'eclipse'
  36. apply plugin: 'org.springframework.boot'
  37. apply plugin: 'io.spring.dependency-management'
  38. apply plugin: 'kotlin'
  39. apply plugin: 'kotlin-kapt'
  40. apply plugin: 'kotlin-spring'
  41. sourceCompatibility = 1.8
  42. targetCompatibility = 1.8
  43. [compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8'
  44. compileJava.dependsOn(processResources)
  45. ext{
  46. set('springCloudVersion','Greenwich.SR1')
  47. set('springBootAdminVersion', '2.1.4')
  48. }
  49. repositories {
  50. mavenCentral()
  51. jcenter()
  52. maven {
  53. url("https://repo.rdc.aliyun.com/repository/37165-release-a3lssL")
  54. credentials {
  55. username 'Dz38pq'
  56. password 'U1oB2RJOJa'
  57. }
  58. }
  59. }
  60. dependencyManagement {
  61. imports {
  62. mavenBom "de.codecentric:spring-boot-admin-dependencies:${springBootAdminVersion}"
  63. mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
  64. }
  65. }
  66. configurations{
  67. all*.exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
  68. }
  69. dependencies {
  70. // Kotlin
  71. compile("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version")
  72. compile("org.jetbrains.kotlin:kotlin-reflect:$kotlin_version")
  73. kapt("org.springframework.boot:spring-boot-configuration-processor")
  74. // SpringBoot Starter
  75. compile 'org.springframework.cloud:spring-cloud-starter-bus-amqp'
  76. compile('org.springframework.boot:spring-boot-starter-web')
  77. compile('org.springframework.cloud:spring-cloud-config-server')
  78. compile('org.springframework.cloud:spring-cloud-config-monitor')
  79. compile('org.springframework.boot:spring-boot-starter-jetty')
  80. compile('org.springframework.boot:spring-boot-starter-jdbc')
  81. compile('org.springframework.boot:spring-boot-starter-cache')
  82. compile("org.springframework.session:spring-session-data-redis")
  83. compile('org.springframework.boot:spring-boot-starter-data-redis')
  84. compile('redis.clients:jedis:2.9.0')
  85. compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-server')
  86. compile('org.springframework.cloud:spring-cloud-starter-openfeign')
  87. //
  88. // commons
  89. compile("commons-io:commons-io:$commons_io_version")
  90. compile("org.apache.commons:commons-lang3:$commons_lang3_version")
  91. compile("commons-codec:commons-codec:$commons_codec_version")
  92. compile("cn.gygxzc.cloud:jwt-session:$jwtVersion")
  93. compile("cn.gygxzc.cloud:tina-auth:$authVersion")
  94. compile("io.reactivex.rxjava2:rxjava:$rxJavaVersion")
  95. compile("org.apache.shiro:shiro-spring:$shiro_version")
  96. // logger
  97. compile("org.slf4j:slf4j-api:$slf4j_api_version")
  98. compile("javax.servlet:javax.servlet-api:3.1.0")
  99. compile("javax.servlet:servlet-api:2.5")
  100. compile("mysql:mysql-connector-java:$mysql_connector_version")
  101. compile("com.baomidou:mybatis-plus-boot-starter:$mybatisPlusVersion")
  102. // swagger
  103. compile("io.springfox:springfox-swagger2:$swagger_version")
  104. compile("io.springfox:springfox-swagger-ui:$swagger_version")
  105. compile 'io.jsonwebtoken:jjwt-api:0.10.5'
  106. runtime 'io.jsonwebtoken:jjwt-impl:0.10.5',
  107. 'io.jsonwebtoken:jjwt-jackson:0.10.5'
  108. ext.jarTree = fileTree(dir: 'libs', include: '**/*.jar')
  109. compile jarTree
  110. }
  111. tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
  112. kotlinOptions {
  113. jvmTarget = "1.8"
  114. }
  115. }
  116. bootJar { enabled = false }
  117. jar { enabled = true }
  118. }