Files
excel-download/my-framework/jdbc-practice/build.gradle
2022-09-18 22:35:25 +09:00

25 lines
508 B
Groovy

plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'com.zaxxer:HikariCP:5.0.1'
implementation 'org.springframework:spring-jdbc:5.3.22'
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.22.0'
testImplementation 'com.h2database:h2:2.1.214'
}
test {
useJUnitPlatform()
}