-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
45 lines (35 loc) · 1.64 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
plugins {
id 'org.springframework.boot' version '2.2.3.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'java'
}
group = 'com.muze'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
// implementation 'org.springframework.boot:spring-boot-starter-security' // Spring Security
// implementation 'org.springframework.security.oauth:spring-security-oauth2:2.3.3.RELEASE' // Spring Security Oauth2
// implementation 'org.springframework.security.oauth.boot:spring-security-oauth2-autoconfigure:2.1.4.RELEASE' // Oauth2 autoconfigure
implementation 'com.h2database:h2' // H2
compileOnly 'org.projectlombok:lombok:1.18.10' // Lombok 컴파일시에만 의존성 추가
annotationProcessor 'org.projectlombok:lombok:1.18.10'
compile 'org.jsoup:jsoup:1.12.1'
compile("org.springframework.boot:spring-boot-starter-jdbc")
compile("org.springframework.boot:spring-boot-starter-data-jpa")
compile("mysql:mysql-connector-java")
compile group: 'org.hibernate', name: 'hibernate-core', version: '5.4.10.Final'
compile('org.springframework.security:spring-security-oauth2-client')
compile('org.springframework.security:spring-security-oauth2-jose')
compile('org.springframework.boot:spring-boot-starter-security')
compile group: 'com.auth0', name: 'java-jwt', version: '3.3.0'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
}