-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (27 loc) · 907 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
group 'com.heavyweightsoftware'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile 'com.fasterxml.jackson.core:jackson-databind:2.9.2',
'com.fasterxml.jackson.core:jackson-core:2.9.2',
'com.intellij:forms_rt:7.0.3',
'org.codehaus.mojo:ideauidesigner-maven-plugin:1.0-beta-1'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile (
'org.codehaus.groovy:groovy-all:2.4.4',
'org.spockframework:spock-core:1.0-groovy-2.4'
)
}
jar {
manifest {
attributes(
'Class-Path': configurations.compile.collect { it.getName() }.join(' '),
'Main-Class': 'com.heavyweightsoftware.rookery.CollectData'
)
}
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
}