-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
35 lines (26 loc) · 930 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
34
35
group 'com.ethercamp'
version '1.4.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'maven'
sourceCompatibility = 1.8
repositories {
jcenter()
mavenLocal()
mavenCentral()
maven { url "https://oss.jfrog.org/libs-snapshot/" }
maven { url "https://dl.bintray.com/ethereum/maven/" }
maven { url "https://repo.spring.io/libs-snapshot" }
}
dependencies {
compile "org.springframework:spring-context:4.2.0.BUILD-SNAPSHOT"
compile "org.projectlombok:lombok:1.16.4"
compile "commons-codec:commons-codec:1.10"
compile ("org.ethereum:ethereumj-core:1.3.12-RELEASE"){
exclude group: "log4j"
exclude group: "org.slf4j", module: "log4j-over-slf4j"
exclude group: "org.slf4j", module: "slf4j-log4j12"
}
testCompile "junit:junit:4.12"
testCompile "org.springframework:spring-test:4.2.0.BUILD-SNAPSHOT"
testCompile "org.apache.httpcomponents:fluent-hc:4.5.2"
}