ARTEMIS-5087: update activemq deps to 5.18.6

This commit is contained in:
Robbie Gemmell 2024-10-04 16:26:11 +01:00
parent 6bfc849997
commit c8a0e7c968
2 changed files with 11 additions and 1 deletions

View File

@ -92,7 +92,7 @@
<pax.exam.version>4.13.5</pax.exam.version>
<commons.config.version>2.11.0</commons.config.version>
<commons.lang.version>3.17.0</commons.lang.version>
<activemq5-version>5.18.5</activemq5-version>
<activemq5-version>5.18.6</activemq5-version>
<apache.derby.version>10.15.2.0</apache.derby.version>
<commons.beanutils.version>1.9.4</commons.beanutils.version>
<commons.logging.version>1.3.4</commons.logging.version>

View File

@ -688,4 +688,14 @@ public class DestinationProxy implements Destination {
public boolean iterate() {
throw new UnsupportedOperationException("Not implemented yet");
}
@Override
public boolean isAdvancedNetworkStatisticsEnabled() {
return false;
}
@Override
public void setAdvancedNetworkStatisticsEnabled(boolean advancedNetworkStatisticsEnabled) {
throw new UnsupportedOperationException("Not implemented yet");
}
}