build.gradle 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. dependencies {
  16. implementation project(":common:utils")
  17. implementation project(":common:data")
  18. implementation project(":timeseries:dao-interface")
  19. implementation project(":timeseries:dao-sql")
  20. //compile project(":timeseries:dao-redis")
  21. // compile project(":timeseries:dao-simulator")
  22. //implementation project(":timeseries:dao-golden")
  23. //compile project(":timeseries:dao-taos")
  24. //implementation project(":timeseries:dao-taoscz")
  25. implementation project(":timeseries:dao-taos")
  26. //implementation project(":timeseries:dao-redis-taos")
  27. //compile project(":timeseries:dao-hive")
  28. //compile project(":timeseries:dao-hadoop")
  29. implementation fileTree(dir: 'src/main/lib', include: '*.jar') //// oracle连接驱动 2区使用
  30. // implementation ("mysql:mysql-connector-java:$mysqlConnectorVersion")
  31. implementation ("com.alibaba:druid:$alibabaDruidVersion")
  32. testImplementation("$bootGroup:spring-boot-starter-test")
  33. implementation("$bootGroup:spring-boot-starter-web")
  34. //compile("$bootGroup:spring-boot-starter-session")
  35. implementation("$bootGroup:spring-boot-starter-websocket")
  36. implementation("$bootGroup:spring-boot-starter-undertow")
  37. // implementation("org.apache.logging.log4j:log4j-core:$log4jVersion")
  38. // implementation("org.apache.logging.log4j:log4j-jul:$log4jVersion")
  39. // implementation("org.apache.logging.log4j:log4j-api:$log4jVersion")
  40. // implementation("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion")
  41. //compile('org.springframework.boot:spring-boot-starter-data-redis')
  42. //implementation "org.springframework.boot:spring-boot-starter-redis:1.3.5.RELEASE"
  43. //compile('io.moquette:moquette-broker:0.10')
  44. implementation('com.fasterxml.jackson.datatype:jackson-datatype-jdk8')
  45. //implementation ("com.taosdata.jdbc:taos-jdbcdriver:$taosVersion")
  46. implementation 'org.postgresql:postgresql:42.4.0'
  47. }