Add junit pioneer dependency

This commit is contained in:
Ryan Harg 2022-12-23 13:32:36 +01:00
parent a30dab2e54
commit d82129fed0

View file

@ -1,7 +1,7 @@
plugins { plugins {
id 'java' id "java"
id 'org.springframework.boot' version '3.0.0' id "org.springframework.boot" version "3.0.0"
id 'io.spring.dependency-management' version '1.1.0' id "io.spring.dependency-management" version "1.1.0"
} }
group = 'de.rpr' group = 'de.rpr'
@ -20,6 +20,7 @@ dependencies {
testImplementation 'au.com.dius.pact:provider:4.4.2' testImplementation 'au.com.dius.pact:provider:4.4.2'
testImplementation 'au.com.dius.pact.provider:junit5:4.4.2' testImplementation 'au.com.dius.pact.provider:junit5:4.4.2'
testImplementation 'au.com.dius.pact.provider:junit5spring:4.4.2' testImplementation 'au.com.dius.pact.provider:junit5spring:4.4.2'
testImplementation 'org.junit-pioneer:junit-pioneer:2.0.0-RC1'
} }
tasks.named('test') { tasks.named('test') {