forked from BitWeb/banklink-java-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
47 lines (38 loc) · 1.15 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
42
43
44
45
46
47
plugins {
id "com.bmuschko.nexus" version "2.3.1"
}
repositories {
maven {
url "http://nexus.bitweb.ee/repository/maven-central/"
}
}
group 'ee.bitweb'
version '3.0.0'
apply plugin: 'java'
apply plugin: 'maven-publish'
apply plugin: 'jacoco'
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
mavenCentral()
}
dependencies {
compile group: 'commons-codec', name: 'commons-codec', version: '1.10'
compile group: 'joda-time', name: 'joda-time', version: '2.9.9'
compile group: 'org.bouncycastle', name: 'bcpkix-jdk15on', version: '1.56'
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.8.8'
// https://mvnrepository.com/artifact/commons-logging/commons-logging
compile group: 'commons-logging', name: 'commons-logging', version: '1.2'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
nexus {
sign = false
repositoryUrl = 'http://nexus.bitweb.ee/repository/maven-public/'
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled false
}
}