-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
35 lines (26 loc) · 972 Bytes
/
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
plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/com.h2database/h2
testImplementation group: 'com.h2database', name: 'h2', version: '2.2.220'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
testImplementation "org.assertj:assertj-core:3.20.2"
implementation group: 'com.zaxxer', name: 'HikariCP', version: '5.0.1'
// SLF4J 라이브러리
implementation 'org.slf4j:slf4j-api:1.7.32'
// Logback 바인딩 (Logback 사용 시)
implementation 'ch.qos.logback:logback-classic:1.2.6'
// https://mvnrepository.com/artifact/org.projectlombok/lombok
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.28'
implementation 'org.springframework.boot:spring-boot-starter-jdbc:2.5.4'
}
test {
useJUnitPlatform()
}