Skip to content

Commit

Permalink
Clean up build gradle and get rid of the catalina related errors from…
Browse files Browse the repository at this point in the history
… contract test logs
  • Loading branch information
yogeshnikam671 committed May 28, 2024
1 parent 1cdc758 commit 242b5e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,16 @@ jacocoTestReport {
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web:3.2.0'
implementation 'org.springframework.boot:spring-boot-starter-test:3.2.0'
implementation('com.intuit.karate:karate-junit5:1.4.1') {
exclude group: 'io.netty'
}
implementation 'org.jetbrains.kotlin:kotlin-reflect'
implementation 'org.springframework.boot:spring-boot-starter-actuator:3.2.0'
implementation 'org.apache.kafka:kafka-clients:3.6.0'
implementation("com.google.code.gson:gson:2.10.1")

implementation('in.specmatic:junit5-support:1.3.21')
implementation 'javax.validation:validation-api:2.0.1.Final'

testImplementation('com.intuit.karate:karate-junit5:1.4.1') {
exclude group: 'io.netty'
}
testImplementation('in.specmatic:junit5-support:1.3.21')
testImplementation('in.specmatic:specmatic-kafka:0.22.1-TRIAL') {
exclude group: 'org.springframework.boot'
exclude group: 'org.apache.tomcat.embed'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class ContractTests : SpecmaticContractTest {
@AfterAll
fun tearDown() {
// Shutdown Springboot application
context.close()
context.stop()

// Shutdown Specmatic Http Stub
httpStub.close()
Expand Down

0 comments on commit 242b5e7

Please sign in to comment.