-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
42 lines (33 loc) Β· 1.86 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.2' // νλ‘μ νΈμ μ¬μ©ν νλ¬κ·ΈμΈμΈ μ€νλ§λΆνΈ νλ¬κ·ΈμΈ
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'me.mosuji.nammsamm' // μ§μ ν κ·Έλ£Ή μ΄λ¦
version = '1.0'
sourceCompatibility = '17' // μλ° μμ€λ₯Ό μ»΄νμΌν λ μλ° λ²μ
repositories { // μμ‘΄μ±μ λ°μ μ μ₯μ μ§μ
mavenCentral() // κΈ°λ³Έκ°
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web' // μΉ κ΄λ ¨ κΈ°λ₯ μ 곡. web μ€νν°.
testImplementation 'org.springframework.boot:spring-boot-starter-test' // ν
μ€νΈ κΈ°λ₯ μ 곡. test μ€νν°.
// μ€νλ§ λ°μ΄ν° JPA
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
runtimeOnly 'com.h2database:h2' // μΈλ©λͺ¨λ¦¬ λ°μ΄ν°λ² μ΄μ€
compileOnly 'org.projectlombok:lombok' // 둬볡
annotationProcessor 'org.projectlombok:lombok'
implementation 'org.springframework.boot:spring-boot-starter-security' // μ€νλ§ μν리ν°λ₯Ό μ¬μ©νκΈ° μν μ€νν°
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6' // νμ리νμμ μ€νλ§ μν리ν°λ₯Ό μ¬μ©νκΈ° μν μμ‘΄μ±
testImplementation 'org.springframework.security:spring-security-test' // μ€νλ§ μν리ν°λ₯Ό ν
μ€νΈνκΈ° μν μμ‘΄μ±
testAnnotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.projectlombok:lombok'
implementation 'io.jsonwebtoken:jjwt:0.9.1' // μλ° JWT λΌμ΄λΈλ¬λ¦¬
implementation 'javax.xml.bind:jaxb-api:2.3.1' // XML λ¬Έμμ Java κ°μ²΄ κ° λ§€ν μλν
//Oauth2 λ₯Ό μ¬μ©νκΈ° μν μ€νν° μΆκ°
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
implementation 'mysql:mysql-connector-java'
}
test {
useJUnitPlatform()
}