forked from mucommander/mucommander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (32 loc) · 1.32 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* This build file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java Library project to get you started.
* For more details take a look at the Java Libraries chapter in the Gradle
* user guide available at https://docs.gradle.org/3.5/userguide/java_library_plugin.html
*/
plugins {
id 'biz.aQute.bnd.builder'
}
// In this section you declare where to find the dependencies of your project
repositories.jcenter()
dependencies {
compile project(':mucommander-commons-file')
testCompile 'org.testng:testng:6.11'
}
jar {
bnd ('Bundle-Name': 'muCommander-gzip',
'Bundle-Vendor': 'muCommander',
'Bundle-Description': 'Library with configuration tools',
'Bundle-DocURL': 'https://www.mucommander.com',
'Export-Package': 'com.mucommander.commons.file.archive.gzip',
'Bundle-Activator': 'com.mucommander.commons.file.archive.gzip.Activator',
'Specification-Title': "muCommander",
'Specification-Vendor': "Arik Hadas",
'Specification-Version': version,
'Implementation-Title': "muCommander",
'Implementation-Vendor': "Arik Hadas",
'Implementation-Version': revision.substring(0, 7),
'Build-Date': new Date().format('yyyyMMdd'),
'Build-Url': "https://www.mucommander.com/version/nightly.xml")
}