build.gradle 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. buildscript {
  2. ext {
  3. kotlin_version = '1.3.21'
  4. springBootVersion = '2.1.7.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. nacosVersion='2.1.0.RELEASE'
  19. logstashVersion = '5.3'
  20. }
  21. repositories {
  22. maven { url 'https://maven.aliyun.com/repository/central' }
  23. maven { url = 'http://repo.spring.io/plugins-release' }
  24. maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
  25. }
  26. dependencies {
  27. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  28. classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
  29. classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
  30. }
  31. }
  32. allprojects {
  33. group = "cn.gygxzc.cloud.tina"
  34. version = "1.0.1"
  35. }
  36. subprojects {
  37. apply plugin: 'java'
  38. apply plugin: 'eclipse'
  39. apply plugin: 'org.springframework.boot'
  40. apply plugin: 'io.spring.dependency-management'
  41. apply plugin: 'kotlin'
  42. apply plugin: 'kotlin-kapt'
  43. apply plugin: 'kotlin-spring'
  44. sourceCompatibility = 1.8
  45. targetCompatibility = 1.8
  46. [compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8'
  47. compileJava.dependsOn(processResources)
  48. ext {
  49. set('springCloudVersion', 'Greenwich.SR2')
  50. set('springBootAdminVersion', '2.1.4')
  51. }
  52. repositories {
  53. maven { url 'https://maven.aliyun.com/repository/public' }
  54. maven { url 'https://maven.aliyun.com/repository/central' }
  55. maven { url 'https://maven.aliyun.com/repository/jcenter' }
  56. }
  57. dependencyManagement {
  58. imports {
  59. mavenBom "de.codecentric:spring-boot-admin-dependencies:${springBootAdminVersion}"
  60. mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
  61. }
  62. }
  63. configurations {
  64. all*.exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
  65. }
  66. dependencies {
  67. testCompile('org.springframework.boot:spring-boot-starter-test')
  68. // Kotlin
  69. compile("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version")
  70. compile("org.jetbrains.kotlin:kotlin-reflect:$kotlin_version")
  71. kapt("org.springframework.boot:spring-boot-configuration-processor")
  72. // SpringBoot Starter
  73. compile 'org.springframework.cloud:spring-cloud-starter-bus-amqp'
  74. compile('org.springframework.boot:spring-boot-starter-webflux')
  75. compile('org.springframework.cloud:spring-cloud-config-server')
  76. compile('org.springframework.cloud:spring-cloud-config-monitor')
  77. compile('org.springframework.boot:spring-boot-starter-undertow')
  78. compile('org.springframework.boot:spring-boot-starter-jdbc')
  79. compile('org.springframework.boot:spring-boot-starter-cache')
  80. compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-server')
  81. compile('org.springframework.cloud:spring-cloud-starter-openfeign')
  82. //
  83. // commons
  84. compile("commons-io:commons-io:$commons_io_version")
  85. compile("org.apache.commons:commons-lang3:$commons_lang3_version")
  86. compile("commons-codec:commons-codec:$commons_codec_version")
  87. compile("io.reactivex.rxjava2:rxjava:$rxJavaVersion")
  88. // logger
  89. compile("org.slf4j:slf4j-api:$slf4j_api_version")
  90. compile("mysql:mysql-connector-java:$mysql_connector_version")
  91. compile("com.baomidou:mybatis-plus-boot-starter:$mybatisPlusVersion")
  92. // swagger
  93. compile("io.springfox:springfox-swagger2:$swagger_version")
  94. compile("io.springfox:springfox-swagger-ui:$swagger_version")
  95. compile('javax.xml.bind:jaxb-api:2.3.0')
  96. compile ("net.logstash.logback:logstash-logback-encoder:${logstashVersion}")
  97. ext.jarTree = fileTree(dir: 'libs', include: '**/*.jar')
  98. compile jarTree
  99. }
  100. tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
  101. kotlinOptions {
  102. jvmTarget = "1.8"
  103. }
  104. }
  105. bootJar { enabled = false }
  106. jar { enabled = true }
  107. }