Merge pull request #43 from amitjoy/master

Added OSGi Support
This commit is contained in:
Will Hedgecock 2016-12-05 13:51:08 -06:00 committed by GitHub
commit d9aba7118e
1 changed files with 4 additions and 4 deletions

View File

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