build.gradle 838 B

12345678910111213141516171819202122232425262728
  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. api project(":timeseries:dao-interface")
  21. api("$bootGroup:spring-boot-starter-data-jpa:$springBootVersion")
  22. api("$bootGroup:spring-boot-starter-cache:$springBootVersion")
  23. api("$bootGroup:spring-boot-starter-jdbc:$springBootVersion")
  24. //api("com.baomidou:dynamic-datasource-spring-boot-starter:$mybatisPlusVersion")
  25. }