-
-
Notifications
You must be signed in to change notification settings - Fork 483
/
Copy pathbuild.gradle
28 lines (24 loc) · 1.15 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
dependencies {
compile project(":pact-jvm-model"),
project(":pact-jvm-matchers_${project.scalaVersion}"),
"org.scalatest:scalatest_${project.scalaVersion}:2.2.6",
'commons-io:commons-io:2.5',
"org.codehaus.groovy:groovy-all:${project.groovyVersion}",
"org.fusesource.jansi:jansi:${project.jansiVersion}",
"org.codehaus.groovy.modules.http-builder:http-builder:${project.httpBuilderVersion}",
"org.apache.httpcomponents:httpclient:${project.httpClientVersion}",
'org.reflections:reflections:0.9.10',
"net.databinder:unfiltered-netty-server_${project.scalaVersion}:0.8.4",
"net.databinder.dispatch:dispatch-core_${project.scalaVersion}:0.11.2"
testCompile ('org.spockframework:spock-core:1.0-groovy-2.4') {
exclude group: 'org.codehaus.groovy'
}
testCompile "cglib:cglib:${project.cglibVersion}"
testCompile project(":pact-jvm-consumer-groovy_${project.scalaVersion}")
}
compileTestGroovy.dependsOn 'compileTestScala'
sourceSets.main.java.srcDirs = []
sourceSets.main.groovy.srcDirs += ["src/main/java"]
test {
systemProperties['pact.rootDir'] = "$buildDir/pacts"
}