-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
executable file
·47 lines (38 loc) · 1.04 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.gradle.api.plugins:gradle-nexus-plugin:0.6.1'
}
}
plugins {
id 'jacoco'
id 'com.github.kt3k.coveralls' version '2.6.3'
}
apply plugin: 'java'
apply plugin: 'nexus'
apply plugin: 'maven'
apply from: 'publish.gradle'
group = 'com.jparams'
version = '3.1.4'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile 'junit:junit:4.12'
testCompile 'org.assertj:assertj-core:3.9.1'
testCompile 'eu.codearte.catch-exception:catch-exception:1.4.4'
testCompile 'org.mockito:mockito-core:1.10.19'
testCompile 'com.carrotsearch:junit-benchmarks:0.7.2'
testCompile 'com.fasterxml.jackson.core:jackson-annotations:2.8.8'
testCompile 'com.fasterxml.jackson.core:jackson-databind:2.8.8.1'
testCompile 'nl.jqno.equalsverifier:equalsverifier:2.2.1'
}
jacocoTestReport {
reports {
xml.enabled = true // coveralls plugin depends on xml format report
html.enabled = true
}
}