build.gradle.kts 298 B

123456789101112131415
  1. plugins {
  2. java
  3. }
  4. dependencies {
  5. implementation("junit", "junit", "4.12")
  6. }
  7. val jar by tasks.getting(Jar::class) {
  8. manifest {
  9. attributes(mapOf(
  10. "Implementation-Title" to project.name,
  11. "Implementation-Version" to project.version
  12. ))
  13. }
  14. }