forked from mucommander/mucommander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
30 lines (26 loc) · 1.11 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
repositories.jcenter()
dependencies {
api project(":mucommander-commons-conf")
api project(":mucommander-commons-file")
api project(":mucommander-commons-io")
implementation 'org.slf4j:slf4j-api:1.7.26'
implementation 'org.osgi:osgi.core:7.0.0'
// Use JUnit test framework
testImplementation 'junit:junit:4.12'
}
jar {
bnd ('Bundle-Name': 'muCommander-preferences',
'Bundle-Activator': 'com.mucommander.conf.Activator',
'Bundle-Vendor': 'muCommander',
'Bundle-Description': 'Tunable preferences handling',
'Bundle-DocURL': 'https://www.mucommander.com',
'Export-Package': 'com.mucommander.conf,com.mucommander.io.backup',
'Specification-Title': "muCommander",
'Specification-Vendor': "Arik Hadas",
'Specification-Version': archiveVersion,
'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")
}