forked from mucommander/mucommander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
50 lines (45 loc) · 1.9 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
38
39
40
41
42
43
44
45
46
47
48
49
50
plugins {
id 'biz.aQute.bnd.builder'
}
repositories {
jcenter()
// maven { url "http://mvnrepository.com/artifact" }
}
dependencies {
compile project(':mucommander-commons-io')
compile project(':mucommander-commons-runtime')
compile project(':mucommander-commons-util')
compile 'net.java.dev.jna:jna:4.4.0'
compile 'net.java.dev.jna:jna-platform:4.4.0'
compile 'org.slf4j:slf4j-api:1.7.26'
compile 'commons-collections:commons-collections:3.2.2'
compile 'org.osgi:osgi.core:7.0.0'
testCompile 'org.testng:testng:6.11'
testCompile 'junit:junit:4.12'
}
jar {
bnd ('Bundle-Name': 'muCommander-commons-file',
'Bundle-Vendor': 'muCommander',
'Bundle-Description': 'Component with file-level utilities',
'Bundle-DocURL': 'https://www.mucommander.com',
'Bundle-Activator': 'com.mucommander.commons.file.osgi.Activator',
'Export-Package':
'com.mucommander.commons.file,' +
'com.mucommander.commons.file.archive,' +
'com.mucommander.commons.file.connection,' +
'com.mucommander.commons.file.filter,' +
'com.mucommander.commons.file.icon,' +
'com.mucommander.commons.file.icon.impl,' +
'com.mucommander.commons.file.osgi,' +
'com.mucommander.commons.file.protocol,' +
'com.mucommander.commons.file.protocol.local,' +
'com.mucommander.commons.file.util',
'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")
}