-
-
Notifications
You must be signed in to change notification settings - Fork 481
/
Copy pathbuild.gradle
39 lines (33 loc) · 1.07 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
plugins {
id "com.gradle.plugin-publish" version "0.11.0"
}
dependencies {
compile project(":provider:pact-jvm-provider")
compile gradleApi()
implementation 'com.github.ajalt:mordant:1.2.1'
testCompile 'org.mockito:mockito-core:2.28.2'
testRuntime "org.junit.vintage:junit-vintage-engine:${project.junit5Version}"
testCompile('org.spockframework:spock-core:2.0-M2-groovy-2.5') {
exclude group: 'org.codehaus.groovy'
}
}
// There is a Groovy version mismatch between GroovyDoc, Gradle and the project
groovydoc {
enabled = false
}
pluginBundle {
website = 'https://github.com/DiUS/pact-jvm/tree/master/pact-jvm-provider-gradle'
vcsUrl = 'https://github.com/DiUS/pact-jvm.git'
description = 'Gradle plugin for verifying pacts against a provider.'
tags = ['pact', 'cdc', 'consumerdrivencontracts', 'microservicetesting']
plugins {
pactProviderPlugin {
id = 'au.com.dius.pact'
displayName = 'Gradle Pact Provider plugin'
}
}
}
compileGroovy {
dependsOn compileKotlin
classpath = classpath.plus(files(compileKotlin.destinationDir))
}