build.gradle 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. buildscript {
  2. ext {
  3. springBootVersion = '2.0.6.RELEASE'
  4. }
  5. repositories {
  6. mavenLocal()
  7. maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
  8. }
  9. dependencies {
  10. classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
  11. }
  12. }
  13. plugins {
  14. id "org.sonarqube" version "3.0"
  15. }
  16. //apply plugin: 'war'
  17. apply plugin: "org.sonarqube"
  18. apply plugin: 'java'
  19. apply plugin: 'org.springframework.boot'
  20. apply plugin: 'io.spring.dependency-management'
  21. archivesBaseName = "water-api-${releaseTime()}"
  22. group = 'com.bz'
  23. //version = '0.0.1-SNAPSHOT'
  24. sourceCompatibility = 1.8
  25. targetCompatibility = 1.8
  26. jar {
  27. version = '0.0.1'
  28. manifest {
  29. attributes "Manifest-Version": 1.0,
  30. 'Main-Class': 'com.bz.smart_city.SmartCityApplication'
  31. }
  32. }
  33. repositories {
  34. mavenLocal()
  35. maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
  36. }
  37. configurations {
  38. compileOnly {
  39. extendsFrom annotationProcessor
  40. }
  41. }
  42. dependencies {
  43. compileOnly 'org.projectlombok:lombok:1.18.10'
  44. annotationProcessor 'org.projectlombok:lombok:1.18.10'
  45. testCompileOnly 'org.projectlombok:lombok:1.18.10'
  46. testAnnotationProcessor 'org.projectlombok:lombok:1.18.10'
  47. implementation('org.springframework.boot:spring-boot-starter-security')
  48. implementation('org.springframework.boot:spring-boot-starter-web')
  49. implementation('org.springframework.boot:spring-boot-starter-thymeleaf')
  50. implementation('org.springframework.boot:spring-boot-starter-aop')
  51. implementation('org.springframework.boot:spring-boot-starter-validation')
  52. implementation('org.springframework.boot:spring-boot-starter-amqp')
  53. implementation('org.springframework.kafka:spring-kafka')
  54. compile('mysql:mysql-connector-java')
  55. //数据源连接池
  56. //compile('com.alibaba:druid:1.1.6')
  57. compile('com.alibaba:druid-spring-boot-starter:1.1.9')
  58. //swagger在线接口文档生成工具
  59. compile('io.springfox:springfox-swagger2:2.7.0')
  60. compile('io.springfox:springfox-swagger-ui:2.7.0')
  61. //分页插件
  62. //compile('com.github.pagehelper:pagehelper:4.1.0')
  63. compile('com.github.pagehelper:pagehelper-spring-boot-starter:1.2.10')
  64. compile ('org.apache.httpcomponents:httpclient:4.5.6')
  65. //json工具
  66. compile('com.alibaba:fastjson:1.2.41')
  67. compile('io.jsonwebtoken:jjwt:0.9.0')
  68. //redis
  69. compile('org.springframework.boot:spring-boot-starter-data-redis')
  70. {
  71. exclude group: 'io.lettuce'
  72. }
  73. compile('redis.clients:jedis')
  74. compile('org.apache.commons:commons-pool2')
  75. compileOnly('org.projectlombok:lombok')
  76. testImplementation('org.springframework.boot:spring-boot-starter-test')
  77. compile('org.apache.commons:commons-lang3:3.4')
  78. //poi
  79. compile 'org.apache.poi:poi:3.17'
  80. compile 'org.apache.poi:poi-ooxml:3.17'
  81. compile 'org.apache.poi:poi-ooxml-schemas:3.17'
  82. //jxls
  83. //compile 'org.jxls.jxls:2.4.6'
  84. compile 'org.jxls:jxls-poi:1.0.16'
  85. //activiti
  86. compile('org.activiti:activiti-spring-boot-starter-basic:5.22.0')
  87. compile('dom4j:dom4j:1.6.1')
  88. // quartz
  89. compile('org.springframework.boot:spring-boot-starter-quartz')
  90. //腾讯云
  91. compile('com.github.qcloudsms:qcloudsms:1.0.6')
  92. //netty
  93. compile ('io.netty:netty-all:4.1.30.Final')
  94. compile('org.bouncycastle:bcprov-jdk16:1.46')
  95. //阿里云
  96. compile('com.aliyun:aliyun-java-sdk-core:4.1.0')
  97. //jdom
  98. compile('org.jdom:jdom:1.1')
  99. implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
  100. }
  101. tasks.withType(JavaCompile) {
  102. options.encoding = 'UTF-8'
  103. }
  104. def releaseTime() {
  105. return new Date().format("yyyyMMdd", TimeZone.getTimeZone("GMT+08:00"))
  106. }
  107. allprojects {
  108. gradle.projectsEvaluated {
  109. tasks.withType(JavaCompile) {
  110. options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" }
  111. }
  112. }