-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (27 loc) · 815 Bytes
/
build.gradle
File metadata and controls
34 lines (27 loc) · 815 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
27
28
29
30
31
32
33
group 'com.parser'
version '1.1'
apply plugin: 'java-library'
apply plugin: 'idea'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
task copyTask(type: Copy) {
from 'src/test/java/csv'
exclude "**/*.java"
into 'build/classes/java/test/csv/'
}
dependencies {
compile group: 'commons-beanutils', name: 'commons-beanutils', version: '1.9.2'
compile group: 'org.apache.commons', name: 'commons-csv', version: '1.4'
compile group: 'commons-lang', name: 'commons-lang', version: '2.4'
compile group: 'commons-logging', name: 'commons-logging', version: '1.1.3'
testCompile 'junit:junit:4.12'
}
jar {
manifest {
attributes('Implementation-Title': 'Entity Parser',
'Implementation-Version': version)
}
}
compileTestJava.dependsOn copyTask