-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
62 lines (48 loc) · 1.18 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
50
51
52
53
54
55
56
57
58
59
60
61
62
plugins {
id 'org.springframework.boot' version '2.3.9.RELEASE'
id 'io.spring.dependency-management' version '1.0.14.RELEASE'
id 'java-library'
id 'maven-publish'
}
group = 'com.github.DevRunner21'
version = '1.0.0'
sourceCompatibility = 11
targetCompatibility = 11
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.springframework.boot:spring-boot-starter-aop'
// redis 의존성
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
// redisson
implementation 'org.redisson:redisson-spring-boot-starter:3.17.7'
}
java {
withSourcesJar()
withJavadocJar()
}
bootJar {
enabled = false
}
jar {
enabled = true
}
publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}
wrapper {
gradleVersion = "7.5"
distributionType = Wrapper.DistributionType.ALL
}
tasks.named('test') {
useJUnitPlatform()
}