-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
26 lines (22 loc) · 729 Bytes
/
build.gradle
File metadata and controls
26 lines (22 loc) · 729 Bytes
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
apply plugin: 'java'
apply plugin: 'application'
group = "eth.abueide.nsp"
version = "0.1-SNAPSHOT"
mainClassName = "eth.abueide.nsp.Main"
applicationDefaultJvmArgs = ["-Dgreeting.language=en"]
repositories {
mavenCentral()
}
dependencies {
compile group: 'commons-io', name: 'commons-io', version: '2.5'
compile group: 'org.apache.commons', name: 'commons-csv', version: '1.4'
compile group: 'commons-validator', name: 'commons-validator', version: '1.5.1'
compile group: 'io.datafx', name: 'flow', version: '8.0.7'
}
jar {
manifest {
attributes 'Implementation-Title': 'Gradle Quickstart',
'Implementation-Version': version,
'Main-Class': mainClassName
}
}