diff --git a/public-api/build.gradle b/public-api/build.gradle index c13636b8e..9ba66061f 100644 --- a/public-api/build.gradle +++ b/public-api/build.gradle @@ -76,11 +76,6 @@ configurations { toolsImplementation.extendsFrom implementation toolsRuntimeOnly.extendsFrom runtimeOnly all*.exclude group: 'javax.annotation', module: 'jsr305' - - all { - exclude group: 'org.apache.tomcat.embed', module: 'tomcat-embed-core' - exclude group: 'com.google.code.findbugs', module: 'jsr305' - } } ext { @@ -444,6 +439,20 @@ appengine { } } +dependencies { + testImplementation 'au.com.dius:pact-jvm-consumer-java8:4.0.10' + testImplementation 'au.com.dius:pact-jvm-consumer-junit5:4.0.10' + modules { + module("org.aspectj:aspectjrt") { replacedBy("org.aspectj:aspectjweaver") } + module("org.springframework:spring-jcl") { replacedBy("commons-logging:commons-logging") } + + module("org.apache.tomcat:tomcat-juli") { + replacedBy("org.apache.tomcat.embed:tomcat-embed-core") + } + } +} + + group = 'org.pmiops.allofus.workbench' version = '0.1.0' sourceCompatibility = 17