Files
Rodin_CI_CD/build.gradle
21_RodinAN 8dc151af96
Some checks failed
CI / Gradle / build (push) Failing after 15m59s
plz
2026-05-29 09:58:51 +03:00

44 lines
689 B
Groovy

plugins {
id 'java'
id 'application'
id 'checkstyle'
id 'jacoco'
}
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
application {
mainClass = 'com.example.App'
}
test {
useJUnitPlatform()
finalizedBy jacocoTestReport
}
jacocoTestReport {
dependsOn test
reports {
xml.required = true
html.required = true
}
}
checkstyle {
toolVersion = '10.12.0'
configFile = file('config/checkstyle/checkstyle.xml')
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}