This repository was archived by the owner on Jul 2, 2024. It is now read-only.
forked from danielclasen/iridium-java-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
70 lines (53 loc) · 1.81 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
plugins {
id 'java-library'
id 'groovy'
id 'jacoco'
id 'io.franzbecker.gradle-lombok' version '1.14'
id 'pl.allegro.tech.build.axion-release' version '1.9.0'
id 'maven-publish'
id "com.jfrog.bintray" version "1.7.3"
}
dependencies {
api 'org.apache.commons:commons-math3:3.6.1'
implementation 'com.google.guava:guava:23.0'
implementation 'com.mashape.unirest:unirest-java:1.4.9'
implementation 'com.fasterxml.jackson.core:jackson-core:2.9.5'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.9.5'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.5'
implementation 'ch.qos.logback:logback-classic:1.3.0-alpha4'
testImplementation 'org.codehaus.groovy:groovy-all:2.4.13'
testImplementation 'org.spockframework:spock-core:1.0-groovy-2.4'
testImplementation 'junit:junit:4.12'
testImplementation 'com.anotherchrisberry:spock-retry:0.6.3'
testImplementation 'org.meanbean:meanbean:2.0.3'
testImplementation 'nl.jqno.equalsverifier:equalsverifier:2.4.6'
}
repositories {
jcenter()
maven {
url "https://dl.bintray.com/anotherchrisberry/spock-retry"
}
}
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
lombok { // optional: values below are the defaults
version = "1.16.20"
sha256 = "c5178b18caaa1a15e17b99ba5e4023d2de2ebc18b58cde0f5a04ca4b31c10e6d"
}
jacocoTestReport {
reports {
csv.enabled false
xml.enabled true
xml.destination file("${buildDir}/reports/jacoco/report.xml")
html.enabled true
html.destination file("${buildDir}/reports/jacoco/html")
}
}
test {
finalizedBy(jacocoTestReport)
testLogging {
events "passed", "skipped", "failed"
exceptionFormat "full"
}
}
apply from: "$projectDir/distribution.gradle"