@@ -387,8 +387,6 @@ subprojects { subproj ->
387
387
links ' https://activemq.apache.org/maven/apidocs/'
388
388
links ' https://jena.apache.org/documentation/javadoc/rdfconnection/'
389
389
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/'
392
390
}
393
391
394
392
if (JavaVersion . current(). isJava11Compatible()) {
@@ -444,8 +442,6 @@ configure(rootProject) {
444
442
links ' https://activemq.apache.org/maven/apidocs/'
445
443
links ' https://jena.apache.org/documentation/javadoc/rdfconnection/'
446
444
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/'
449
445
}
450
446
451
447
if (JavaVersion . current(). isJava9Compatible()) {
@@ -471,9 +467,7 @@ configure(rootProject) {
471
467
componentSelection { rules ->
472
468
rules. all { ComponentSelection selection ->
473
469
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 -]*/
477
471
}
478
472
if (rejected) {
479
473
selection. reject(" Release Candidate" )
0 commit comments