Files
j3270/build.gradle
rudi 060fe787c2
Build and Test j3270 / Build JAR & Run Tests (push) Failing after 39s
Fourth pass
2026-08-20 19:05:37 -04:00

27 lines
472 B
Groovy

allprojects {
group = 'org.j3270'
version = '0.1.0'
repositories {
mavenCentral()
}
}
subprojects {
apply plugin: 'java'
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
}
}