build.gradle 867 B

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