-
Notifications
You must be signed in to change notification settings - Fork 40
/
build.gradle
50 lines (40 loc) · 1.04 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
plugins {
id 'java-library'
id 'org.springframework.boot' version '2.4.3'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
//apply from: './deploy.gradle'
apply from: './publish.gradle'
group = 'com.github.taptap'
version = '1.3'
sourceCompatibility = '1.8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
ext {
redisson_Version = '3.15.1'
}
dependencies {
compile "org.redisson:redisson:${redisson_Version}"
compile 'org.springframework.boot:spring-boot-starter-aop'
compileOnly 'org.springframework.boot:spring-boot-starter-web'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springdoc:springdoc-openapi-ui:1.5.2'
}
bootJar {
enabled = false
}
jar {
enabled = true
}
test {
useJUnitPlatform()
}