This repository has been archived by the owner on Dec 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathbuild.gradle
77 lines (68 loc) · 2.26 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
71
72
73
74
75
76
77
plugins {
id 'java'
id 'maven-publish'
id "me.champeau.gradle.jmh" version "0.5.0"
id "pl.allegro.tech.build.axion-release" version "1.10.2"
}
repositories {
mavenLocal()
maven {
url = 'https://oss.sonatype.org/content/repositories/snapshots'
}
maven {
url = 'https://repo.maven.apache.org/maven2'
}
}
dependencies {
compile 'io.konik:harness:1.0.0'
compile 'javax.validation:validation-api:1.1.0.Final'
compile 'com.neovisionaries:nv-i18n:1.22'
compile 'com.google.guava:guava:24.1.1-jre'
compile 'javax.inject:javax.inject:1'
compile 'net.sf.supercsv:super-csv:2.4.0'
compile 'net.sf.supercsv:super-csv-dozer:2.4.0'
compile 'com.google.http-client:google-http-client:1.24.1'
compile 'com.google.http-client:google-http-client-jackson2:1.24.1'
compile 'com.fasterxml.jackson.core:jackson-databind:2.9.10.1'
compile 'org.apache.tika:tika-core:1.22'
compile 'org.apache.commons:commons-lang3:3.4'
compile 'org.apache.bval:bval-jsr:1.1.2'
testCompile 'io.konik:pdfbox-carriage:1.1.0'
testCompile 'junit:junit:4.11'
testCompile 'net._01001111:jlorem:1.3'
testCompile 'org.assertj:assertj-core:1.6.1'
testCompile 'org.unitils:unitils-core:3.4.2'
testCompile 'xmlunit:xmlunit:1.5'
testCompile 'org.javers:javers-core:1.3.4'
testCompile 'org.mockito:mockito-all:1.10.19'
testCompile 'org.apache.logging.log4j:log4j-api:2.6.2'
testCompile 'org.apache.logging.log4j:log4j-core:2.6.2'
testCompile 'org.apache.logging.log4j:log4j-slf4j-impl:2.6.2'
testCompile 'org.apache.logging.log4j:log4j-jcl:2.6.2'
testCompile 'org.apache.logging.log4j:log4j-1.2-api:2.6.2'
testCompile 'org.apache.logging.log4j:log4j-jul:2.6.2'
testCompile 'commons-io:commons-io:2.6'
jmh 'org.openjdk.jmh:jmh-core:1.1'
jmh 'org.openjdk.jmh:jmh-generator-annprocess:1.1'
}
scmVersion {
tag {
prefix = 'konik'
}
}
group = 'io.konik'
version = scmVersion.version
description = 'Konik - The ZUGFeRD processing library '
sourceCompatibility = '1.8'
configurations.all {
}
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}