Added some old commits...
[ariane.git] / ariane-configuration / build.gradle
blobe7e92eb1528148fa3f90a5fc01ea6a15a3520148
1 //In order to apply the osgi stuff
2 apply plugin: 'osgi'
3 apply plugin: 'antlr'
5 modname = 'ariane-configuration'
6 version = '0.0.8'
8 dependencies
10   antlr('org.antlr:antlr4:4.0')
11   {
12     exclude group: 'junit', module: 'junit'
13     exclude group: 'org.antlr', module: 'antlr-runtime'
14   }
17 //Information needed for OSGI
18 jar
20   manifest
21   {
22       name = modname
23       //instruction 'Private-Package',
24       //        'org.mycomp.package1',
25       //        'org.mycomp.package2'
26       instruction 'Bundle-Category', 'configuration,implementation,simple'
27       instruction 'Bundle-Copyright', 'Copyright 2012 Fat Cat'
28       instruction 'Bundle-Description', ' Bundle that provides an ' +
29           'implementation to the configuration interface using an simple ' +
30           'custom format'
31       instruction 'Bundle-DocURL', 'https://www.assembla' +
32           '.com/spaces/jellyfish_cache'
33       instruction 'Bundle-License', 'http://www.apache.org/licenses/LICENSE-2' +
34           '.0.html; Description= Apache 2.0 License'
35       instruction 'Bundle-ManifestVersion', '2'
36       instruction 'Bundle-Version', version
37   }