build.gradle 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. buildscript {
  2. repositories {
  3. mavenLocal()
  4. maven { url "http://maven.aliyun.com/nexus/content/groups/public" }
  5. mavenCentral()
  6. }
  7. dependencies {
  8. classpath("$bootGroup:spring-boot-gradle-plugin:$springBootVersion")
  9. }
  10. }
  11. version = '1.0.3'
  12. apply plugin: "$bootGroup"
  13. apply plugin: 'io.spring.dependency-management'
  14. dependencies {
  15. compile project(":common:utils")
  16. // compile fileTree(dir: 'src/main/lib', include: '*.jar')
  17. compile("$bootGroup:spring-boot-starter-web")
  18. compile("$bootGroup:spring-boot-starter-undertow")
  19. compile("$bootGroup:spring-boot-starter-websocket")
  20. compile('org.apache.logging.log4j:log4j-core:2.15.0')
  21. compile('org.apache.logging.log4j:log4j-jul:2.15.0')
  22. compile('org.apache.logging.log4j:log4j-api:2.15.0')
  23. compile('org.apache.logging.log4j:log4j-slf4j-impl:2.15.0')
  24. compile 'mysql:mysql-connector-java:5.1.28'
  25. compile 'com.alibaba:druid:1.0.25'
  26. compile 'com.alibaba:fastjson:1.2.58'
  27. compile 'com.baomidou:mybatis-plus-boot-starter:3.1.1'
  28. compile 'com.baomidou:mybatis-plus-generator:3.1.1'
  29. implementation 'com.taosdata.jdbc:taos-jdbcdriver:2.0.35'
  30. testCompile("$bootGroup:spring-boot-starter-test")
  31. // https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt
  32. compile group: 'io.jsonwebtoken', name: 'jjwt', version: '0.9.0'
  33. compile("com.netflix.feign:feign-core:8.18.0")
  34. compile("com.netflix.feign:feign-jackson:8.18.0")
  35. compile("org.apache.poi:poi-ooxml:3.9")
  36. compile("net.sourceforge.jexcelapi:jxl:2.6.12")
  37. implementation 'io.springfox:springfox-swagger-ui:2.9.2'
  38. implementation 'io.springfox:springfox-swagger2:2.9.2'
  39. implementation 'io.swagger:swagger-models:1.5.21'
  40. }