build.gradle 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. buildscript {
  2. ext {
  3. kotlin_version = '1.2.61'
  4. springBootVersion = '2.0.1.RELEASE'
  5. springCloudVersion = 'Finchley.SR1'
  6. junit_version = '4.12'
  7. commons_io_version = '2.5'
  8. commons_lang3_version = '3.5'
  9. commons_codec_version = '1.10'
  10. commons_fileupload_version = '1.3.2'
  11. slf4j_api_version = '1.7.25'
  12. }
  13. repositories {
  14. mavenCentral()
  15. maven { url = 'http://repo.spring.io/plugins-release' }
  16. }
  17. dependencies {
  18. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  19. classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
  20. classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
  21. }
  22. }
  23. allprojects {
  24. group = "cn.gygxzc.cloud.tina"
  25. version = "1.1"
  26. }
  27. subprojects {
  28. apply plugin: 'java'
  29. apply plugin: 'eclipse'
  30. apply plugin: 'org.springframework.boot'
  31. apply plugin: 'io.spring.dependency-management'
  32. apply plugin: 'kotlin'
  33. apply plugin: 'kotlin-kapt'
  34. apply plugin: 'kotlin-spring'
  35. sourceCompatibility = 1.8
  36. targetCompatibility = 1.8
  37. [compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8'
  38. compileJava.dependsOn(processResources)
  39. repositories {
  40. mavenCentral()
  41. jcenter()
  42. }
  43. dependencyManagement {
  44. imports {
  45. mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Finchley.SR1'
  46. }
  47. }
  48. configurations{
  49. all*.exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
  50. all*.exclude group: 'org.hibernate.validator'
  51. }
  52. dependencies {
  53. // Kotlin
  54. compile("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version")
  55. compile("org.jetbrains.kotlin:kotlin-reflect:$kotlin_version")
  56. kapt("org.springframework.boot:spring-boot-configuration-processor")
  57. // SpringBoot Starter
  58. compile('org.springframework.cloud:spring-cloud-config-server')
  59. compile('org.springframework.boot:spring-boot-starter-jetty')
  60. compile('org.springframework.boot:spring-boot-starter-security')
  61. compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-server')
  62. // compile('org.springframework.cloud:spring-cloud-starter-openfeign')
  63. //
  64. // commons
  65. compile("commons-io:commons-io:$commons_io_version")
  66. compile("org.apache.commons:commons-lang3:$commons_lang3_version")
  67. compile("commons-codec:commons-codec:$commons_codec_version")
  68. // logger
  69. compile("org.slf4j:slf4j-api:$slf4j_api_version")
  70. compile("javax.servlet:javax.servlet-api:3.1.0")
  71. compile("javax.servlet:servlet-api:2.5")
  72. ext.jarTree = fileTree(dir: 'libs', include: '**/*.jar')
  73. compile jarTree
  74. }
  75. tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
  76. kotlinOptions {
  77. jvmTarget = "1.8"
  78. }
  79. }
  80. bootJar { enabled = false }
  81. jar { enabled = true }
  82. }