Added the initial files from ariane jellyfish
[ariane.git] / ariane-processor-vfc / build.gradle
blobd4e9b8fe153f9d2c492f41e719167705dd93c7d6
1 //In order to apply the osgi stuff
2 apply plugin: 'osgi'
4 modname = 'ariane-processor-vfc'
5 version = '0.0.7'
7 dependencies
9   //In order to provide the json parser for vfc
10   compile('com.google.code.gson:gson:2.2.2')
11   {
12     exclude group: 'junit', module: 'junit'
13   }
16 //Information needed for OSGI
17 jar
19   manifest
20   {
21     name = modname
22     //instruction 'Private-Package',
23     //        'org.mycomp.package1',
24     //        'org.mycomp.package2'
25     instruction 'Bundle-Category', 'processor,implementation,vfc'
26     instruction 'Bundle-Copyright', 'Copyright 2012 Fat Cat'
27     instruction 'Bundle-Description', ' Bundle that provides an processor ' +
28         'implementing the vfc strategy for cache consistency.'
29     instruction 'Bundle-DocURL', 'https://www.assembla' +
30         '.com/spaces/jellyfish_cache'
31     instruction 'Bundle-License',
32         'http://www.apache.org/licenses/LICENSE-2.0.html; Description= Apache' +
33             ' 2.0 License'
34     instruction 'Bundle-ManifestVersion', '2'
35     instruction 'Bundle-Version', version
36   }