Added OSGi Support

Signed-off-by: Amit Kumar Mondal <admin@amitinside.com>
This commit is contained in:
Amit Kumar Mondal 2016-05-18 11:17:16 +02:00
parent b30504e5b2
commit 24f424ed98
1 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,7 @@
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
apply plugin: 'osgi'
group = 'com.fazecast'
archivesBaseName = 'jSerialComm'
@ -12,10 +13,9 @@ javadoc.options.links("http://docs.oracle.com/javase/7/docs/api/")
jar {
manifest {
attributes 'Implementation-Title': 'jSerialComm: Java Serial Communications Library',
'Implementation-Version': version,
'Implementation-Vendor': 'Fazecast, Inc.',
'Sealed': 'true'
instruction 'Bundle-Vendor', 'Fazecast, Inc.'
instruction 'Bundle-Description', 'Java Serial Communications Library'
instruction 'Sealed', 'true'
}
}