-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·42 lines (36 loc) · 1.08 KB
/
build.gradle
File metadata and controls
executable file
·42 lines (36 loc) · 1.08 KB
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
group 'NSCC.SoCScanner'
version '1.0'
apply plugin: 'java'
apply plugin: 'idea'
task fatJar(type: Jar) {
manifest {
attributes 'Implementation-Title': 'SoCScanner',
'Implementation-Version': 1.0,
'Main-Class': 'main.SoCScanner'
}
baseName = project.name + '-all'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
jar {
manifest {
attributes 'Main-Class': 'SoCScanner'
}
baseName = 'SoCScanner'
version = '1.0'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
testCompile([group: 'junit', name: 'junit', version: '4.11'])
compile ([group: 'com.intellij', name: 'annotations', version: '9.0.4'])
compile ([group: 'org.apache.poi', name: 'poi', version: '3.14'])
compile ([group: 'org.apache.poi', name: 'poi-ooxml', version: '3.14'])
compile ([group: 'de.jensd', name: 'fontawesomefx-commons', version: '8.13'])
compile ([group: 'org.jasypt', name: 'jasypt', version: '1.9.0'])
}
task wrapper(type: Wrapper) {
gradleVersion = '2.9'
}