diff --git a/build.gradle b/build.gradle index bf988964..b7507cca 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'de.thetaphi:forbiddenapis:3.6' + classpath 'de.thetaphi:forbiddenapis:3.7' } } plugins { @@ -28,7 +28,7 @@ repositories { forbiddenApis { suppressAnnotations = ['org.dstadler.commons.util.SuppressForbidden'] - bundledSignatures = [ 'jdk-reflection', 'commons-io-unsafe-2.11.0', 'jdk-internal' ] + bundledSignatures = [ 'jdk-reflection', 'commons-io-unsafe-2.15.1', 'jdk-internal' ] signaturesFiles += files('config/forbidden-apis/http-signatures.txt') } forbiddenApisMain { @@ -38,15 +38,15 @@ forbiddenApisMain { } dependencies { - implementation 'org.dstadler:commons-dost:1.3.1' + implementation 'org.dstadler:commons-dost:1.3.2' implementation 'org.apache.httpcomponents:httpclient:4.5.14' implementation 'org.apache.commons:commons-lang3:3.14.0' - implementation 'commons-io:commons-io:2.15.1' + implementation 'commons-io:commons-io:2.16.1' // version '0.20.2-cdh3u4' is referenced by webarchive-commons, but "vanished"... implementation 'org.apache.hadoop:hadoop-core:0.20.205.0' implementation 'org.netpreserve.commons:webarchive-commons:1.1.9' - implementation 'com.fasterxml.jackson.core:jackson-core:2.16.1' + implementation 'com.fasterxml.jackson.core:jackson-core:2.17.0' // for commoncrawl-source implementation 'org.jsoup:jsoup:1.15.3' @@ -55,7 +55,7 @@ dependencies { implementation 'com.google.code.findbugs:jsr305:3.0.2' testImplementation 'org.junit.vintage:junit-vintage-engine:5.10.2' - testImplementation 'org.dstadler:commons-test:1.0.0.20' + testImplementation 'org.dstadler:commons-test:1.0.0.21' } wrapper {