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