1 Star 0 Fork 0

wzw / BAOZUNExercise01

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.9'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}
group = 'com.wzw'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
maven { url "https://maven.aliyun.com/repository/public/" }
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
compileOnly 'org.projectlombok:lombok:1.18.10'
annotationProcessor 'org.projectlombok:lombok:1.18.10'
implementation "junit:junit:4.13.2"
implementation "org.apache.commons:commons-collections4:4.2"
implementation "org.apache.commons:commons-lang3:3.12.0"
implementation "org.apache.commons:commons-io:1.3.2"
implementation "com.google.guava:guava:21.0"
// log4j 自带的日志输出
implementation "org.apache.logging.log4j:log4j-api:2.19.0"
implementation "org.apache.logging.log4j:log4j-core:2.17.1"
}
tasks.named('test') {
useJUnitPlatform()
}
Java
1
https://gitee.com/wzwspace/baozunexercise01.git
git@gitee.com:wzwspace/baozunexercise01.git
wzwspace
baozunexercise01
BAOZUNExercise01
master

搜索帮助