forked from bigchaindb/java-bigchaindb-driver
-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
41 lines (34 loc) · 1.13 KB
/
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
36
37
38
39
40
41
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
apply plugin: 'checkstyle'
targetCompatibility = 1.8
sourceCompatibility = 1.8
group = 'com.bigchaindb'
version = '0.1'
description = 'Java Driver for Bigchaindb'
jar {
manifest {
attributes 'Implementation-Title': description,
'Implementation-Version': version,
'Main-Class': 'com.bigchaindb.Main'
}
}
repositories {
maven { url "http://repo.maven.apache.org/maven2" }
mavenLocal()
}
dependencies {
compile 'com.squareup.okhttp3:okhttp:3.9.0'
compile 'net.i2p.crypto:eddsa:0.2.0'
compile 'commons-codec:commons-codec:1.10'
compile 'com.google.code.gson:gson:2.8.2'
compile 'org.slf4j:slf4j-api:1.7.25'
compile 'com.bigchaindb:cryptoconditions:1.0'
compile 'org.bouncycastle:bcprov-jdk15on:1.54'
compile 'org.glassfish.tyrus.bundles:tyrus-standalone-client:1.9'
testCompile 'junit:junit:4.12'
testCompile 'org.apache.logging.log4j:log4j-core:2.9.1'
testCompile 'org.slf4j:slf4j-log4j12:1.7.25'
testCompile group: 'net.jadler', name: 'jadler-all', version: '1.3.0'
}