Skip to content

Commit

Permalink
chore(EWT-358): upgrade to Wiremock 3.X, and more internal deps (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
dili91 authored Oct 12, 2023
1 parent 5a0f91c commit 3f55eb1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
16 changes: 6 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
// to unleash the lombok magic
id "io.freefair.lombok" version "8.4"
// to make our tests output more fancy
id 'com.adarshr.test-logger' version '3.2.0'
id 'com.adarshr.test-logger' version '4.0.0'
// to publish packages
id 'maven-publish'
// code linting
Expand All @@ -17,10 +17,9 @@ plugins {
id "io.github.gradle-nexus.publish-plugin" version "1.3.0"
}

java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

spotless {
Expand Down Expand Up @@ -113,11 +112,8 @@ dependencies {
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: '5.10.0'

// Mocking libraries
def mockitoVersion = '4.8.0'
testImplementation group: 'org.mockito', name: 'mockito-core', version: mockitoVersion
testImplementation group: 'org.mockito', name: 'mockito-inline', version: mockitoVersion
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: mockitoVersion
testImplementation group: 'com.github.tomakehurst', name: 'wiremock-jre8', version: '2.35.0'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.6.0'
testImplementation group: 'org.wiremock', name: 'wiremock', version: '3.2.0'

// Wait test utility
testImplementation group: 'org.awaitility', name: 'awaitility', version: '4.2.0'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Main properties
group=com.truelayer
archivesBaseName=truelayer-java
version=10.1.0
version=10.1.1

# Artifacts properties
sonatype_repository_url=https://s01.oss.sonatype.org/service/local/
Expand Down

0 comments on commit 3f55eb1

Please sign in to comment.