mirror of
https://github.com/suhf/No1WMS.git
synced 2026-02-04 19:54:00 +09:00
63 lines
2.3 KiB
Groovy
63 lines
2.3 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot' version '2.5.0'
|
|
id 'io.spring.dependency-management' version '1.1.4'
|
|
}
|
|
|
|
group = 'com.no1'
|
|
version = '0.0.1-SNAPSHOT'
|
|
configurations {
|
|
compileOnly {
|
|
extendsFrom annotationProcessor
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.1.3'
|
|
compileOnly 'org.projectlombok:lombok'
|
|
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
|
runtimeOnly 'org.mariadb.jdbc:mariadb-java-client'
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
// https://mvnrepository.com/artifact/javax.servlet/jstl
|
|
implementation group: 'javax.servlet', name: 'jstl', version: '1.2'
|
|
|
|
|
|
|
|
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:2.1.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'
|
|
|
|
// https://mvnrepository.com/artifact/org.apache.tiles/tiles-jsp
|
|
implementation group: 'org.apache.tiles', name: 'tiles-jsp', version: '3.0.8'
|
|
|
|
// https://mvnrepository.com/artifact/org.apache.tiles/tiles-servlet
|
|
implementation group: 'org.apache.tiles', name: 'tiles-servlet', version: '3.0.8'
|
|
|
|
// https://mvnrepository.com/artifact/org.apache.tiles/tiles-el
|
|
implementation group: 'org.apache.tiles', name: 'tiles-el', version: '3.0.8'
|
|
|
|
implementation 'org.apache.tiles:tiles-api:3.0.8'
|
|
implementation 'org.apache.tiles:tiles-core:3.0.8'
|
|
|
|
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-aop
|
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-aop', version: '2.5.0'
|
|
implementation group: 'com.google.zxing', name: 'javase', version: '3.5.0'
|
|
implementation group: 'com.google.zxing', name: 'core', version: '3.5.0'
|
|
|
|
}
|
|
tasks.named('test') {
|
|
useJUnitPlatform()
|
|
}
|