build.gradle 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. buildscript {
  2. repositories {
  3. mavenLocal()
  4. maven {
  5. allowInsecureProtocol = true
  6. url "http://maven.aliyun.com/nexus/content/groups/public"
  7. }
  8. mavenCentral()
  9. }
  10. dependencies {
  11. classpath("$bootGroup:spring-boot-gradle-plugin:$springBootVersion")
  12. }
  13. }
  14. apply plugin: "$bootGroup"
  15. apply plugin: 'io.spring.dependency-management'
  16. dependencies {
  17. implementation project(":common:utils")
  18. implementation project(":common:data")
  19. implementation project(":timeseries:dao-interface")
  20. implementation project(":timeseries:dao-sql")
  21. //compile project(":timeseries:dao-redis")
  22. // compile project(":timeseries:dao-simulator")
  23. // implementation project(":timeseries:dao-golden")
  24. //compile project(":timeseries:dao-taos")
  25. implementation project(":timeseries:dao-taoscz")
  26. //implementation project(":timeseries:dao-taos")
  27. //implementation project(":timeseries:dao-redis-taos")
  28. //compile project(":timeseries:dao-hive")
  29. //compile project(":timeseries:dao-hadoop")
  30. // implementation fileTree(dir: 'src/main/lib', include: '*.jar') //// oracle连接驱动 2区使用
  31. // implementation ("mysql:mysql-connector-java:$mysqlConnectorVersion")
  32. implementation("com.alibaba:druid:$alibabaDruidVersion")
  33. testImplementation("$bootGroup:spring-boot-starter-test")
  34. implementation("$bootGroup:spring-boot-starter-web")
  35. //compile("$bootGroup:spring-boot-starter-session")
  36. implementation("$bootGroup:spring-boot-starter-websocket")
  37. implementation("$bootGroup:spring-boot-starter-undertow")
  38. // implementation("org.apache.logging.log4j:log4j-core:$log4jVersion")
  39. // implementation("org.apache.logging.log4j:log4j-jul:$log4jVersion")
  40. // implementation("org.apache.logging.log4j:log4j-api:$log4jVersion")
  41. // implementation("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion")
  42. //compile('org.springframework.boot:spring-boot-starter-data-redis')
  43. //implementation "org.springframework.boot:spring-boot-starter-redis:1.3.5.RELEASE"
  44. //compile('io.moquette:moquette-broker:0.10')
  45. implementation('com.fasterxml.jackson.datatype:jackson-datatype-jdk8')
  46. //implementation ("com.taosdata.jdbc:taos-jdbcdriver:$taosVersion")
  47. implementation 'org.postgresql:postgresql:42.4.0'
  48. implementation("org.springframework.cloud:spring-cloud-starter-bootstrap")
  49. // implementation("com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-discovery")
  50. // implementation("com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-config")
  51. }