Added some old commits...
[ariane.git] / ariane-processor-message-parser / build.gradle
blobefc7eb06f868c85a8e988c4a355b10d49ddf13a8
1 //In order to apply the osgi stuff
2 apply plugin: 'osgi'
4 modname = 'ariane-processor-message-parser'
5 version = '0.0.8'
7 //Information needed for OSGI
8 jar
10   manifest
11   {
12     name = modname
13     //instruction 'Private-Package',
14     //        'org.mycomp.package1',
15     //        'org.mycomp.package2'
16     instruction 'Bundle-Category', 'processor,implementation,message,parser,' +
17         'formatter'
18     instruction 'Bundle-Copyright', 'Copyright 2012 Fat Cat'
19     instruction 'Bundle-Description', ' Bundle that parses an client request ' +
20         'or server response and formats an client response or server request. '
21     instruction 'Bundle-DocURL', 'https://www.assembla' +
22         '.com/spaces/jellyfish_cache'
23     instruction 'Bundle-License',
24         'http://www.apache.org/licenses/LICENSE-2.0.html; Description= Apache' +
25             ' 2.0 License'
26     instruction 'Bundle-ManifestVersion', '2'
27     instruction 'Bundle-Version', version
28   }