1 Star 0 Fork 0

刘群/question-service

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle.kts 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
YusongDeng 提交于 2022-03-13 17:17 . Add checkstyle to project.
import org.springframework.boot.gradle.plugin.SpringBootPlugin
plugins {
java
checkstyle
id("org.springframework.boot") version "2.6.4"
}
repositories {
mavenCentral()
}
dependencies {
implementation(platform(SpringBootPlugin.BOM_COORDINATES))
implementation("org.springframework.boot:spring-boot-starter")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
runtimeOnly("org.postgresql:postgresql")
runtimeOnly("org.flywaydb:flyway-core")
testImplementation(platform("org.junit:junit-bom:5.8.2"))
testImplementation(platform("org.testcontainers:testcontainers-bom:1.16.3"))
testImplementation("org.junit.jupiter:junit-jupiter-api")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.testcontainers:testcontainers")
testImplementation("org.testcontainers:postgresql")
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
checkstyle {
maxWarnings = 0
toolVersion = "10.0"
}
tasks {
test {
useJUnitPlatform()
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/liuqun1986/question-service.git
[email protected]:liuqun1986/question-service.git
liuqun1986
question-service
question-service
master

搜索帮助