build.gradle 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. buildscript {
  2. repositories {
  3. mavenLocal()
  4. maven {
  5. allowInsecureProtocol = true
  6. url "http://maven.aliyun.com/nexus/content/groups/public" }
  7. mavenCentral()
  8. }
  9. dependencies {
  10. classpath("$bootGroup:spring-boot-gradle-plugin:$springBootVersion")
  11. }
  12. }
  13. apply plugin: "$bootGroup"
  14. apply plugin: 'io.spring.dependency-management'
  15. configurations {
  16. compile.exclude group: 'org.apache.commons', module: 'commons-pool2'
  17. }
  18. dependencies {
  19. implementation project(":common:utils")
  20. implementation project(":common:data")
  21. implementation project(":dao:dao-interface")
  22. implementation project(":dao:dao-sql")
  23. implementation project(":dao:dao-redis")
  24. //implementation ("mysql:mysql-connector-java:$mysqlConnectorVersion")
  25. implementation("$bootGroup:spring-boot-starter-test")
  26. implementation ("com.alibaba:druid:$alibabaDruidVersion")
  27. implementation("$bootGroup:spring-boot-starter-web")
  28. //compile("$bootGroup:spring-boot-starter-session")
  29. implementation("$bootGroup:spring-boot-starter-websocket")
  30. implementation("$bootGroup:spring-boot-starter-undertow")
  31. implementation("org.apache.logging.log4j:log4j-core:$log4jVersion")
  32. implementation("org.apache.logging.log4j:log4j-jul:$log4jVersion")
  33. implementation("org.apache.logging.log4j:log4j-api:$log4jVersion")
  34. implementation("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion")
  35. implementation("$bootGroup:spring-boot-starter-data-redis-reactive")
  36. implementation('com.fasterxml.jackson.datatype:jackson-datatype-jdk8')
  37. implementation ("com.taosdata.jdbc:taos-jdbcdriver:$taosVersion"){
  38. exclude group: 'com.alibaba', module: 'fastjson'
  39. }
  40. //implementation 'org.apache.commons:commons-pool2'
  41. implementation fileTree(dir: 'src/main/lib', include: '*.jar') //// oracle连接驱动 2区使用
  42. implementation 'xerces:xercesImpl:2.12.2'
  43. implementation 'org.apache.poi:poi-ooxml:5.2.3'
  44. implementation 'cn.hutool:hutool-poi:5.8.12'
  45. implementation 'cn.hutool:hutool-core:5.8.13'
  46. implementation 'org.postgresql:postgresql:42.4.0'
  47. //implementation 'redis.clients:jedis:4.3.1'
  48. }