Files
j3270/build.gradle
T
rudi a1b1273022
Build and Test j3270 / Build JAR & Run Tests (push) Failing after 2m24s
Fix gradle and add workflows
2026-08-20 18:24:35 -04:00

29 lines
497 B
Groovy

allprojects {
group = 'org.j3270'
version = '0.1.0'
repositories {
mavenCentral()
}
}
subprojects {
apply plugin: 'java'
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'
}
}