-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
executable file
·31 lines (26 loc) · 950 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
apply plugin: 'eclipse'
apply plugin: 'java'
apply plugin: 'maven'
group = 'com.github.neilprosser'
sourceCompatibility = 1.6
version = '1.0'
commonsIOVersion = '2.0.1'
hamcrestVersion = '1.2.1'
jacksonVersion = '1.8.5'
junitVersion = '4.8.2'
repositories {
mavenCentral()
}
dependencies {
compile group: 'commons-io', name: 'commons-io', version: commonsIOVersion
compile group: 'org.codehaus.jackson', name: 'jackson-core-asl', version: jacksonVersion
compile group: 'org.codehaus.jackson', name: 'jackson-mapper-asl', version: jacksonVersion
testCompile group: 'junit', name: 'junit-dep', version: junitVersion
testCompile group: 'org.hamcrest', name: 'hamcrest-core', version: hamcrestVersion
testCompile group: 'org.hamcrest', name: 'hamcrest-library', version: hamcrestVersion
}
uploadArchives {
repositories.mavenDeployer {
repository(url: "file://" + System.getProperty("user.home") + "/.m2/repository/")
}
}