12345678910111213141516171819202122232425262728 |
- buildscript {
- repositories {
- mavenLocal()
- maven {
- allowInsecureProtocol = true
- url "http://maven.aliyun.com/nexus/content/groups/public"
- }
- mavenCentral()
- }
- dependencies {
- classpath("$bootGroup:spring-boot-gradle-plugin:$springBootVersion")
- }
- }
- apply plugin: "$bootGroup"
- apply plugin: 'io.spring.dependency-management'
- bootJar.enabled = false
- jar.enabled = true
- dependencies {
- implementation project(":common:utils")
- api project(":timeseries:dao-interface")
- api("$bootGroup:spring-boot-starter-data-jpa:$springBootVersion")
- api("$bootGroup:spring-boot-starter-cache:$springBootVersion")
- api("$bootGroup:spring-boot-starter-jdbc:$springBootVersion")
- //api("com.baomidou:dynamic-datasource-spring-boot-starter:$mybatisPlusVersion")
- }
|