Skip to content

Commit

Permalink
Downgrade Mockito since we're still supporting Java 8
Browse files Browse the repository at this point in the history
  • Loading branch information
ultraq committed Sep 16, 2023
1 parent b0c608c commit 102581c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions thymeleaf-layout-dialect/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ description = 'A dialect for Thymeleaf that allows you to use layout/decorator t
group = 'nz.net.ultraq.thymeleaf'
year = '2012'

configurations.all {
resolutionStrategy.dependencySubstitution {
substitute module('org.mockito:mockito-core') using module('org.mockito:mockito-core:4.11.0') because 'Still supporting Java 8'
}
}

dependencies {
api "org.apache.groovy:groovy:${groovyVersion}"
implementation 'nz.net.ultraq.groovy:groovy-extensions:2.1.0'
Expand Down

0 comments on commit 102581c

Please sign in to comment.