fix jsr-305

This commit is contained in:
Jörg Prante 2022-06-05 19:53:43 +02:00
parent f8acd5256e
commit 7dae66371b
4 changed files with 4 additions and 5 deletions

View file

@ -1,5 +1,5 @@
dependencies { dependencies {
testImplementation("org.mockito:mockito-core:${project.property('mockito.version')}") { testImplementation(libs.mockito.core) {
exclude group: 'org.hamcrest' exclude group: 'org.hamcrest'
} }
} }

View file

View file

@ -1,5 +1,5 @@
dependencies { dependencies {
api libs.jsr305.v2 api libs.jsr305
testImplementation libs.assertj testImplementation libs.assertj
testImplementation libs.compile.testing testImplementation libs.compile.testing
} }

View file

@ -12,8 +12,7 @@ dependencyResolutionManagement {
library('junit4', 'junit', 'junit').version('4.13.2') library('junit4', 'junit', 'junit').version('4.13.2')
library('chronicle-core', 'net.openhft', 'chronicle-core').version('2.21ea14') library('chronicle-core', 'net.openhft', 'chronicle-core').version('2.21ea14')
library('affinity', 'net.openhft', 'affinity').version('3.21ea0') library('affinity', 'net.openhft', 'affinity').version('3.21ea0')
library('jsr305', 'org.xbib', 'jsr-305').version('1.0.0') library('jsr305', 'org.xbib', 'jsr-305').version('2.0.0')
library('jsr305-v2', 'org.xbib', 'jsr-305').version('2.0.0')
library('javassist', 'org.javassist', 'javassist').version('3.28.0-GA') library('javassist', 'org.javassist', 'javassist').version('3.28.0-GA')
library('jackson', 'com.fasterxml.jackson.core', 'jackson-databind').versionRef('jackson') library('jackson', 'com.fasterxml.jackson.core', 'jackson-databind').versionRef('jackson')
library('gson', 'com.google.code.gson', 'gson').version('2.8.9') library('gson', 'com.google.code.gson', 'gson').version('2.8.9')