add build.gradle dependencies(gson,poi,poi-ooxml) please refresh gradle

This commit is contained in:
Kana
2024-01-03 16:50:18 +09:00
parent 28eecf0f24
commit dac2f36cea
6 changed files with 44 additions and 4 deletions

View File

@@ -33,7 +33,13 @@ dependencies {
implementation 'org.apache.tomcat.embed:tomcat-embed-jasper'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter-test:3.0.3'
// https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation group: 'com.google.code.gson', name: 'gson', version: '2.10.1'
// https://mvnrepository.com/artifact/org.apache.poi/poi
implementation group: 'org.apache.poi', name: 'poi', version: '5.2.3'
// https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml
implementation group: 'org.apache.poi', name: 'poi-ooxml', version: '5.2.3'
}
tasks.named('test') {
useJUnitPlatform()