Files
Stéphane Nicoll 0819fdf9f3 Polish
2025-06-05 15:35:28 +02:00

37 lines
1001 B
Groovy

plugins {
id "checkstyle"
id "java-gradle-plugin"
id "io.spring.javaformat" version "$javaFormatVersion"
}
repositories {
gradlePluginPortal()
mavenCentral()
}
dependencies {
api(platform("org.junit:junit-bom:${junitVersion}"))
checkstyle("com.puppycrawl.tools:checkstyle:${checkstyle.toolVersion}")
checkstyle("io.spring.javaformat:spring-javaformat-checkstyle:${javaFormatVersion}")
implementation("com.github.ben-manes:gradle-versions-plugin:$gradleVersionsPluginVersion")
implementation("io.spring.javaformat:spring-javaformat-gradle-plugin:$javaFormatVersion")
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation("org.assertj:assertj-core:${assertJVersion}")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
gradlePlugin {
plugins {
conventionsPlugin {
id = "org.springframework.ws.conventions"
implementationClass = "org.springframework.ws.gradle.conventions.ConventionsPlugin"
}
}
}
tasks.named('test') {
useJUnitPlatform()
}