forked from pact-foundation/pact-jvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
21 lines (19 loc) · 899 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
plugins {
id 'scala'
}
dependencies {
compile project(path: ":consumer", configuration: 'default')
compile "org.json:json:${project.jsonVersion}"
compile "org.specs2:specs2-core_2.13:${project.specs2Version}"
compile 'org.asynchttpclient:async-http-client:2.8.1'
compile 'org.scala-lang.modules:scala-java8-compat_2.13:0.9.1'
implementation 'io.netty:netty-transport-native-epoll:4.1.48.Final'
testCompile "org.specs2:specs2-junit_2.13:${project.specs2Version}",
"ch.qos.logback:logback-core:${project.logbackVersion}",
"ch.qos.logback:logback-classic:${project.logbackVersion}"
testRuntime "org.junit.vintage:junit-vintage-engine:${project.junit5Version}"
testCompile "org.codehaus.groovy:groovy:${project.groovyVersion}"
testCompile('org.spockframework:spock-core:2.0-M4-groovy-3.0') {
exclude group: 'org.codehaus.groovy'
}
}