-
Notifications
You must be signed in to change notification settings - Fork 86
/
build.gradle
43 lines (37 loc) · 1021 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
36
37
38
39
40
41
42
43
apply plugin: 'java'
//apply plugin: 'application'
apply plugin: 'maven-publish'
buildscript {
repositories {
mavenCentral()
}
}
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven {
url 'http://oss.sonatype.org/content/repositories/snapshots'
}
}
dependencies {
compile "org.bouncycastle:bcprov-jdk15on:1.55"
compile "org.bouncycastle:bcprov-ext-jdk15on:1.55"
compile 'org.slf4j:slf4j-api:1.7.25'
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile 'org.hamcrest:hamcrest-all:1.3'
compile 'org.apache.logging.log4j:log4j-api:2.8.2'
compile 'org.apache.logging.log4j:log4j-core:2.8.2'
compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.8.2'
compile "org.web3j:core:2.3.1"
}
publishing {
publications {
jarAndSources(MavenPublication) {
from components.java
groupId 'com.ing.blockchain.zk'
artifactId 'rangeproof'
version 'master'
}
}
}