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

@@ -23,3 +23,10 @@ dependencies {
api project(':apps:ministreaming')
testImplementation project(path: ':apps:ministreaming', configuration: 'tests')
}
jar {
manifest {
attributes 'Specification-Title': 'I2P Streaming Implementation'
attributes 'Implementation-Title': 'I2P Java Streaming Implementation'
}
}