Added the initial files from ariane jellyfish
[ariane.git] / ariane-protocol-api / build.gradle
blobb15cc17ce5e0648cdcb9cc43e47f1efc274690d6
1 //In order to apply the osgi stuff
2 apply plugin: 'osgi'
4 modname = 'ariane-protocol-api'
5 version = '0.0.7'
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', 'protocol,interface'
17     instruction 'Bundle-Copyright', 'Copyright 2012 Fat Cat'
18     instruction 'Bundle-Description', ' Bundle that provides the protocol api.'
19     instruction 'Bundle-DocURL', 'https://www.assembla' +
20         '.com/spaces/jellyfish_cache'
21     instruction 'Bundle-License',
22         'http://www.apache.org/licenses/LICENSE-2.0.html; Description= Apache' +
23             ' 2.0 License'
24     instruction 'Bundle-ManifestVersion', '2'
25     instruction 'Bundle-Version', version
26   }