build.gradle 998 B

123456789101112131415161718192021222324252627282930
  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. bootJar.enabled = false
  16. jar.enabled = true
  17. dependencies {
  18. implementation project(":common:utils")
  19. implementation project(":common:data")
  20. implementation project(":timeseries:dao-interface")
  21. // implementation fileTree(dir: 'src/main/lib', include: '*.jar')
  22. // implementation("$bootGroup:spring-boot-starter-log4j2")
  23. implementation ("com.taosdata.jdbc:taos-jdbcdriver:$taosVersion2"){
  24. exclude group: 'com.alibaba', module: 'fastjson'
  25. }
  26. implementation("com.alibaba:druid-spring-boot-starter:$alibabaDruidVersion")
  27. implementation("redis.clients:jedis:$jedisVersion")
  28. }