forked from pact-foundation/pact-jvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (34 loc) · 1.64 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
plugins {
id 'scala'
}
dependencies {
api project(path: ":core:model", configuration: 'default')
api project(path: ":core:pactbroker", configuration: 'default')
api project(path: ":core:matchers", configuration: 'default')
api project(path: ":core:support", configuration: 'default')
compile'commons-io:commons-io:2.5',
"org.apache.httpcomponents:httpclient:${project.httpClientVersion}"
implementation "org.slf4j:slf4j-api:${project.slf4jVersion}"
implementation "org.scala-lang:scala-library:${project.scalaVersion}"
implementation 'io.github.classgraph:classgraph:4.8.25'
implementation "org.codehaus.groovy:groovy:${project.groovyVersion}"
api 'com.michael-bull.kotlin-result:kotlin-result:1.1.6'
implementation 'com.github.ajalt:mordant:1.2.1'
implementation 'com.vladsch.flexmark:flexmark:0.62.2'
implementation 'com.vladsch.flexmark:flexmark-ext-tables:0.62.2'
testCompile "org.codehaus.groovy:groovy-json:${project.groovyVersion}"
testRuntime "ch.qos.logback:logback-classic:${project.logbackVersion}"
testCompile 'io.dropwizard:dropwizard-testing:1.3.7'
testCompile "org.junit.jupiter:junit-jupiter-api:${project.junit5Version}"
testRuntime "org.junit.vintage:junit-vintage-engine:${project.junit5Version}"
testCompile 'org.mockito:mockito-core:2.28.2'
testCompile 'javax.xml.bind:jaxb-api:2.3.1'
testCompile('org.spockframework:spock-core:2.0-M4-groovy-3.0') {
exclude group: 'org.codehaus.groovy'
}
testCompile 'org.hamcrest:hamcrest:2.1'
}
compileTestGroovy {
dependsOn compileTestScala
classpath = classpath.plus(files(compileTestScala.destinationDir))
}