12345678910111213141516171819202122232425262728293031323334353637383940 |
- 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")
- implementation project(":common:data")
- implementation project(":timeseries:dao-interface")
- implementation fileTree(dir: 'src/main/lib', include: '*.jar')
- implementation("org.apache.logging.log4j:log4j-core:$log4jVersion")
- implementation("org.apache.logging.log4j:log4j-jul:$log4jVersion")
- implementation("org.apache.logging.log4j:log4j-api:$log4jVersion")
- implementation("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion")
- //compile("com.github.it235:knife4j-redis-lettuce-stater")
- // compile('org.springframework.boot:spring-boot-starter-data-redis')
- // implementation "org.springframework.boot:spring-boot-starter-redis:1.3.5.RELEASE"
- implementation("$bootGroup:spring-boot-starter-test")
- // https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt
- implementation group: 'io.jsonwebtoken', name: 'jjwt', version: '0.9.0'
- implementation 'org.apache.commons:commons-pool2'
- implementation("$bootGroup:spring-boot-starter-data-redis-reactive")
- implementation 'com.fasterxml.jackson.core:jackson-databind'
- }
|