Gradle: Generate attributes for JAR manifests

This commit is contained in:
str4d
2019-04-21 21:01:28 +00:00
parent 967dde4395
commit 1cc330ba66
6 changed files with 76 additions and 6 deletions

View File

@@ -71,6 +71,14 @@ if (System.getenv("TARGET_JAVA_HOME") == null && JavaVersion.current() != JavaVe
test.dependsOn scalaTest
}
jar {
manifest {
attributes 'Specification-Title': 'I2P Core API'
attributes 'Implementation-Title': 'I2P Java Core API'
attributes 'Main-Class': 'net.i2p.util.CommandLine'
}
}
configurations {
tests
}