-
Notifications
You must be signed in to change notification settings - Fork 460
/
build.gradle
34 lines (29 loc) · 1005 Bytes
/
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
apply from: rootProject.file('../gradle/java-setup.gradle')
apply from: rootProject.file('../gradle/java-publish.gradle')
ext {
developers = [
fvgh: [ name: 'Frank Vennemeyer', email: 'frankgh@zoho.com' ]
]
}
dependencies {
compile("org.eclipse.platform:org.eclipse.core.resources:${VER_ECLIPSE_CORE_RESOURCES}") {
exclude group: 'org.eclipse.platform', module: 'org.eclipse.ant.core'
exclude group: 'org.eclipse.platform', module: 'org.eclipse.core.expressions'
exclude group: 'org.eclipse.platform', module: 'org.eclipse.core.filesystem'
}
compileOnly("org.slf4j:slf4j-api:${VER_SLF4J}")
testCompile("org.slf4j:slf4j-api:${VER_SLF4J}")
testCompile("org.slf4j:slf4j-simple:${VER_SLF4J}")
}
jar {
manifest {
from 'src/main/resources/META-INF/MANIFEST.MF'
}
}
//////////
// Test //
//////////
sourceSets {
// Use JAR file with all resources for Eclipse-Base integration-tests
test.runtimeClasspath = jar.outputs.files + sourceSets.test.output + sourceSets.test.compileClasspath
}