Files
rudi c32521fd4b
Build and Test j3270 / Build JAR & Run Tests (push) Successful in 1m6s
Cleaner rendering
2026-08-21 11:51:37 -04:00

20 lines
359 B
Groovy

plugins {
id 'java-library'
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
test {
useJUnitPlatform()
}
jar {
manifest {
attributes 'Implementation-Title': 'lib3270j',
'Implementation-Version': archiveVersion
}
}