-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
74 lines (66 loc) · 1.95 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
apply plugin: "java"
apply plugin: "groovy"
apply plugin: "idea"
apply plugin: "java-library-distribution"
group = "io.elastic"
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
mavenCentral()
mavenLocal()
}
sourceSets {
main {
java.outputDir = file("build/classes/main")
}
test {
java.outputDir = file("build/classes/test")
}
}
test {
useJUnitPlatform()
testLogging {
showStandardStreams = true
}
maxParallelForks 4
}
dependencies {
compile "com.fasterxml.jackson.module:jackson-module-jsonSchema:2.9.6"
compile "com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.9.6"
compile "com.fasterxml.jackson.datatype:jackson-datatype-jsr353:2.9.6"
compile "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.9.6"
compile "com.sun.xml.bind:jaxb-xjc:2.1.6"
compile "com.sun.xml.ws:jaxws-tools:2.2.1"
compile "io.elastic:sailor-jvm:3.3.9"
compile "javax.xml:jaxb-impl:2.1"
compile files("lib/tools.jar")
compile "org.apache.axis2:axis2-codegen:1.6.1"
compile "org.apache.axis2:axis2-jaxbri:1.7.8"
compile "org.jetbrains:annotations:16.0.1"
compile "org.json:json:20201115"
compile("org.membrane-soa:service-proxy-core:4.6.1") {
exclude group: "javax.annotation"
}
testCompile "net.joshka:junit-json-params:5.5.1-r0"
testCompile "org.junit.jupiter:junit-jupiter-params:5.4.2"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.4.2"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.4.2"
testCompile "org.mockito:mockito-core:2.13.0"
}
uploadArchives {
repositories {
mavenLocal()
}
}
wrapper {
gradleVersion = "5.4.1"
}
task downloadDependencies() {
description "Download all dependencies to the Gradle cache"
doLast {
configurations.findAll { it.canBeResolved }.files
}
}