Add junit pioneer dependency
This commit is contained in:
parent
a30dab2e54
commit
d82129fed0
1 changed files with 13 additions and 12 deletions
25
build.gradle
25
build.gradle
|
@ -1,7 +1,7 @@
|
|||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot' version '3.0.0'
|
||||
id 'io.spring.dependency-management' version '1.1.0'
|
||||
id "java"
|
||||
id "org.springframework.boot" version "3.0.0"
|
||||
id "io.spring.dependency-management" version "1.1.0"
|
||||
}
|
||||
|
||||
group = 'de.rpr'
|
||||
|
@ -9,19 +9,20 @@ version = '0.0.1-SNAPSHOT'
|
|||
sourceCompatibility = '17'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||||
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||||
testImplementation 'au.com.dius.pact:consumer:4.4.2'
|
||||
testImplementation 'au.com.dius.pact.consumer:junit5: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:junit5spring:4.4.2'
|
||||
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||||
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||||
testImplementation 'au.com.dius.pact:consumer:4.4.2'
|
||||
testImplementation 'au.com.dius.pact.consumer:junit5: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:junit5spring:4.4.2'
|
||||
testImplementation 'org.junit-pioneer:junit-pioneer:2.0.0-RC1'
|
||||
}
|
||||
|
||||
tasks.named('test') {
|
||||
useJUnitPlatform()
|
||||
useJUnitPlatform()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue