-
-
Notifications
You must be signed in to change notification settings - Fork 481
/
Copy pathbuild.gradle
63 lines (51 loc) · 1.98 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
buildscript {
repositories {
maven { url 'https://clojars.org/repo' }
mavenCentral()
mavenLocal()
}
dependencies {
classpath 'org.apache.commons:commons-lang3:3.10'
}
}
plugins {
id 'au.com.dius.pact.kotlin-library-conventions'
id "com.netflix.nebula.clojure" version "13.0.1"
}
description = 'Pact-JVM - Provides a DSL and a base test class for use with Junit to build consumer tests'
group = 'au.com.dius.pact.consumer'
dependencies {
api project(":consumer")
api 'org.apache.httpcomponents.client5:httpclient5'
implementation 'org.apache.httpcomponents.client5:httpclient5-fluent'
implementation 'junit:junit:4.13.2'
implementation 'org.json:json'
implementation 'org.apache.commons:commons-lang3'
implementation 'com.google.guava:guava'
testImplementation 'ch.qos.logback:logback-core'
testImplementation 'ch.qos.logback:logback-classic'
testImplementation 'org.apache.commons:commons-collections4'
testImplementation 'org.junit.vintage:junit-vintage-engine'
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.14.1'
testImplementation('io.rest-assured:rest-assured:5.3.0') {
exclude group: 'org.apache.groovy'
}
testImplementation 'org.apache.groovy:groovy'
testImplementation 'org.apache.groovy:groovy-json'
testImplementation 'org.apache.groovy:groovy-xml'
// Required for Java 9
testImplementation 'javax.xml.bind:jaxb-api:2.3.1'
testRuntimeOnly 'net.bytebuddy:byte-buddy'
testRuntimeOnly 'org.objenesis:objenesis:3.1'
testImplementation 'org.clojure:clojure:1.10.1', 'http-kit:http-kit:2.3.0'
testImplementation 'javax.xml.bind:jaxb-api:2.3.1'
testImplementation 'javax.activation:activation:1.1'
testImplementation 'org.glassfish.jaxb:jaxb-runtime:2.3.0'
}
clojureTest {
junit = true
junitOutputDir = file("$buildDir/test-results/clojure/" + org.apache.commons.lang3.RandomStringUtils.randomAlphanumeric(6))
clojureTest.dependsOn 'testClasses'
}
clojure.aotCompile = true
//clojureRepl.port = '7888'