@@ -387,8 +387,6 @@ subprojects { subproj ->
387387 links ' https://activemq.apache.org/maven/apidocs/'
388388 links ' https://jena.apache.org/documentation/javadoc/rdfconnection/'
389389 links ' https://kafka.apache.org/20/javadoc/'
390- links ' https://rabbitmq.github.io/rabbitmq-java-client/api/current/'
391- links ' https://www.dropwizard.io/1.3.5/dropwizard-core/apidocs/'
392390 }
393391
394392 if (JavaVersion . current(). isJava11Compatible()) {
@@ -444,8 +442,6 @@ configure(rootProject) {
444442 links ' https://activemq.apache.org/maven/apidocs/'
445443 links ' https://jena.apache.org/documentation/javadoc/rdfconnection/'
446444 links ' https://kafka.apache.org/20/javadoc/'
447- links ' https://rabbitmq.github.io/rabbitmq-java-client/api/current/'
448- links ' https://www.dropwizard.io/1.3.5/dropwizard-core/apidocs/'
449445 }
450446
451447 if (JavaVersion . current(). isJava9Compatible()) {
@@ -471,9 +467,7 @@ configure(rootProject) {
471467 componentSelection { rules ->
472468 rules. all { ComponentSelection selection ->
473469 boolean rejected = [' alpha' , ' beta' , ' b' , ' cr' , ' rc' , ' m' , ' mr' ]. any { qualifier ->
474- // This matcher is needed until Dropwizard releases 2.0
475- def dropwizard = " (?:\\ +test\\ d+)?"
476- selection. candidate. version ==~ / (?i).*[.-]${qualifier}[.\d -]*${dropwizard}/
470+ selection. candidate. version ==~ / (?i).*[.-]${qualifier}[.\d -]*/
477471 }
478472 if (rejected) {
479473 selection. reject(" Release Candidate" )
0 commit comments