build.gradle 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. buildscript {
  2. ext {
  3. kotlin_version = '1.2.61'
  4. springBootVersion = '2.0.1.RELEASE'
  5. springCloudVersion = 'Finchley.SR1'
  6. mybatisPlusVersion = '3.0.3'
  7. junit_version = '4.12'
  8. commons_io_version = '2.5'
  9. commons_lang3_version = '3.5'
  10. commons_codec_version = '1.10'
  11. slf4j_api_version = '1.7.25'
  12. mysql_connector_version = '5.1.45'
  13. mybatis_plus_version = '2.2.0'
  14. mybatis_plus_boot_version = '1.0.5'
  15. swagger_version = '2.7.0'
  16. caffeine_version = '2.6.1'
  17. shiro_version = '1.4.0'
  18. pinyin4j_version = '2.5.1'
  19. }
  20. repositories {
  21. mavenCentral()
  22. maven { url = 'http://repo.spring.io/plugins-release' }
  23. }
  24. dependencies {
  25. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  26. classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
  27. classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
  28. }
  29. }
  30. allprojects {
  31. group = "cn.gygxzc.cloud"
  32. version = "1.0"
  33. }
  34. subprojects {
  35. apply plugin: 'java'
  36. apply plugin: 'eclipse'
  37. apply plugin: 'org.springframework.boot'
  38. apply plugin: 'io.spring.dependency-management'
  39. apply plugin: 'kotlin'
  40. apply plugin: 'kotlin-kapt'
  41. apply plugin: 'kotlin-spring'
  42. sourceCompatibility = 1.8
  43. targetCompatibility = 1.8
  44. [compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8'
  45. compileJava.dependsOn(processResources)
  46. repositories {
  47. mavenCentral()
  48. jcenter()
  49. maven {
  50. url("https://repo.rdc.aliyun.com/repository/33224-release-ycBLfV")
  51. credentials {
  52. username 'TbLzWL'
  53. password 'mCl1FI5SVB'
  54. }
  55. }
  56. }
  57. dependencyManagement {
  58. imports {
  59. mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Finchley.SR1'
  60. }
  61. }
  62. configurations{
  63. all*.exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
  64. }
  65. dependencies {
  66. // Kotlin
  67. compile("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version")
  68. compile("org.jetbrains.kotlin:kotlin-reflect:$kotlin_version")
  69. kapt("org.springframework.boot:spring-boot-configuration-processor")
  70. // SpringBoot Starter
  71. compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-client')
  72. compile('org.springframework.cloud:spring-cloud-starter-openfeign')
  73. compile("org.springframework.session:spring-session-data-redis")
  74. //
  75. compile('org.springframework.boot:spring-boot-starter-web')
  76. compile('org.springframework.boot:spring-boot-starter-jdbc')
  77. compile('org.springframework.boot:spring-boot-starter-actuator')
  78. compile('org.springframework.boot:spring-boot-starter-jta-atomikos')
  79. compile('org.springframework.boot:spring-boot-starter-jetty')
  80. // cache
  81. compile('org.springframework.boot:spring-boot-starter-cache')
  82. compile('org.springframework.boot:spring-boot-starter-data-redis')
  83. compile('redis.clients:jedis:2.9.0')
  84. compile('org.springframework.cloud:spring-cloud-starter-config')
  85. testCompile('org.springframework.boot:spring-boot-starter-test')
  86. // mq
  87. compile('com.fasterxml.jackson.module:jackson-module-kotlin:2.9.6')
  88. //只因用shiro核心包
  89. compile("org.apache.shiro:shiro-core:$shiro_version"){
  90. exclude group:"org.apache.shiro"
  91. }
  92. compile("com.belerweb:pinyin4j:$pinyin4j_version")
  93. // commons
  94. compile("commons-io:commons-io:$commons_io_version")
  95. compile("org.apache.commons:commons-lang3:$commons_lang3_version")
  96. compile("commons-codec:commons-codec:$commons_codec_version")
  97. compile("javax.servlet:javax.servlet-api:3.1.0")
  98. compile("javax.servlet:servlet-api:2.5")
  99. // cache
  100. compile("com.github.ben-manes.caffeine:caffeine:$caffeine_version")
  101. // db
  102. compile("mysql:mysql-connector-java:$mysql_connector_version")
  103. compile("com.baomidou:mybatis-plus-boot-starter:$mybatisPlusVersion")
  104. // swagger
  105. compile("io.springfox:springfox-swagger2:$swagger_version")
  106. compile("io.springfox:springfox-swagger-ui:$swagger_version")
  107. ext.jarTree = fileTree(dir: 'libs', include: '**/*.jar')
  108. compile jarTree
  109. }
  110. tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
  111. kotlinOptions {
  112. jvmTarget = "1.8"
  113. }
  114. }
  115. bootJar { enabled = false }
  116. jar { enabled = true }
  117. }