forked from inspectIT/inspectIT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatform.gradle
48 lines (45 loc) · 1.23 KB
/
platform.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
/**
* Gradle build file for managing the Eclipse RCP platform and bnd tasks.
*
* @author Ivan Senic
*/
apply plugin: 'org.standardout.bnd-platform'
configurations {
platform {
extendsFrom configurations.uiRcpProd
}
}
configurations.platform.transitive = false
/** Settings for the Eclipse platform update site & bnd */
platform {
eclipseHome = file(eclipseBaseDir)
updateSiteDir = file(updateSiteInternal)
defaultQualifier = null
useBndHashQualifiers = false
useFeatureHashQualifiers = false
bnd(group: 'org.springframework') {
optionalImport '*'
}
bnd(group: 'org.hamcrest', name: 'hamcrest-all') {
optionalImport '*'
}
bnd(group: 'com.esotericsoftware.kryonet', name: 'kryonet') {
optionalImport '*'
}
bnd(group: 'com.esotericsoftware.reflectasm', name: 'reflectasm') {
optionalImport '*'
}
bnd(group: 'com.esotericsoftware.minlog', name: 'minlog') {}
bnd(group: 'com.github.stephenc.high-scale-lib', name: 'high-scale-lib') {
optionalImport '*'
}
bnd(group: 'uk.org.lidalia', name: 'sysout-over-slf4j') {}
bnd(group: 'org.jfree') {
optionalImport '*'
}
bnd(group: 'org.apache.httpcomponents') {
optionalImport '*'
}
}
updateSite.dependsOn(rootProject.unzipEclipse)
updateSiteZip.dependsOn(rootProject.unzipEclipse)