build.gradle 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. apply plugin: "$bootGroup"
  12. apply plugin: 'io.spring.dependency-management'
  13. dependencies {
  14. compile project(":common:utils")
  15. compile project(":common:data")
  16. compile project(":dao:dao-interface")
  17. compile project(":dao:dao-sql")
  18. compile project(":dao:dao-redis")
  19. compile 'mysql:mysql-connector-java:5.1.28'
  20. testCompile("$bootGroup:spring-boot-starter-test")
  21. compile 'com.alibaba:druid:1.0.25'
  22. compile("$bootGroup:spring-boot-starter-web")
  23. //compile("$bootGroup:spring-boot-starter-session")
  24. compile("$bootGroup:spring-boot-starter-websocket")
  25. compile("$bootGroup:spring-boot-starter-undertow")
  26. compile('org.apache.logging.log4j:log4j-core:2.15.0')
  27. compile('org.apache.logging.log4j:log4j-jul:2.15.0')
  28. compile('org.apache.logging.log4j:log4j-api:2.15.0')
  29. compile('org.apache.logging.log4j:log4j-slf4j-impl:2.15.0')
  30. compile("$bootGroup:spring-boot-starter-data-redis-reactive")
  31. compile('com.fasterxml.jackson.datatype:jackson-datatype-jdk8')
  32. implementation 'com.taosdata.jdbc:taos-jdbcdriver:2.0.35'
  33. compile 'org.apache.commons:commons-pool2'
  34. }