iter = preparedTransactions.values().iterator(); iter.hasNext();) {
- Tx tx = iter.next();
- RecordLocation location = tx.location;
- if (rc == null || rc.compareTo(location) < 0) {
- rc = location;
- }
- }
- return rc;
- }
- }
-
- public boolean isDoingRecover() {
- return doingRecover;
- }
-
-}
diff --git a/activemq-jdbc-store/src/main/java/org/apache/activemq/store/journal/package.html b/activemq-jdbc-store/src/main/java/org/apache/activemq/store/journal/package.html
deleted file mode 100755
index 380f9d7547..0000000000
--- a/activemq-jdbc-store/src/main/java/org/apache/activemq/store/journal/package.html
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
- Message persistence using a high performance transaction log via the Journal interface.
-
-
-
-
diff --git a/activemq-kahadb-store/pom.xml b/activemq-kahadb-store/pom.xml
index 8b3a7495fe..2af75afee3 100644
--- a/activemq-kahadb-store/pom.xml
+++ b/activemq-kahadb-store/pom.xml
@@ -39,11 +39,6 @@
org.apache.activemq
activemq-broker
-
- ${project.groupId}
- activeio-core
- true
-
org.apache.activemq.protobuf
activemq-protobuf
diff --git a/activemq-karaf/src/main/resources/features-core.xml b/activemq-karaf/src/main/resources/features-core.xml
index dedc644e80..f8f9d1c71f 100644
--- a/activemq-karaf/src/main/resources/features-core.xml
+++ b/activemq-karaf/src/main/resources/features-core.xml
@@ -56,7 +56,6 @@
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.xpp3/${xpp3-bundle-version}
mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.xstream/${xstream-bundle-version}
mvn:org.apache.aries/org.apache.aries.util/${aries-version}
- mvn:org.apache.activemq/activeio-core/${activeio-version}
mvn:org.codehaus.jettison/jettison/${jettison-version}
mvn:com.fasterxml.jackson.core/jackson-core/${jackson-version}
mvn:com.fasterxml.jackson.core/jackson-databind/${jackson-version}
diff --git a/activemq-mqtt/pom.xml b/activemq-mqtt/pom.xml
index 1743b5d5b9..f9e9d0f2d0 100644
--- a/activemq-mqtt/pom.xml
+++ b/activemq-mqtt/pom.xml
@@ -40,11 +40,6 @@
activemq-broker
-
- ${project.groupId}
- activeio-core
- true
-
org.apache.activemq.protobuf
activemq-protobuf
diff --git a/activemq-osgi/pom.xml b/activemq-osgi/pom.xml
index dc3ee1039b..03d29cd7a0 100644
--- a/activemq-osgi/pom.xml
+++ b/activemq-osgi/pom.xml
@@ -174,7 +174,6 @@
javax.resource*;resolution:=optional,
javax.servlet*;resolution:=optional,
com.thoughtworks.xstream*;resolution:=optional,
- org.apache.activeio*;resolution:=optional,
org.apache.camel*;version="${camel-version-range}";resolution:=optional,
org.apache.camel.spring.handler;version="${camel-version-range}";resolution:=optional,
org.apache.camel.spring.xml.handler;version="${camel-version-range}";resolution:=optional,
diff --git a/activemq-spring/pom.xml b/activemq-spring/pom.xml
index 4e786ecf1e..005f46a10d 100644
--- a/activemq-spring/pom.xml
+++ b/activemq-spring/pom.xml
@@ -69,11 +69,6 @@
activemq-kahadb-store
true
-
- ${project.groupId}
- activeio-core
- true
-
diff --git a/activemq-spring/src/main/java/org/apache/activemq/store/PersistenceAdapterFactoryBean.java b/activemq-spring/src/main/java/org/apache/activemq/store/PersistenceAdapterFactoryBean.java
deleted file mode 100644
index 0964024251..0000000000
--- a/activemq-spring/src/main/java/org/apache/activemq/store/PersistenceAdapterFactoryBean.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.activemq.store;
-
-import org.apache.activemq.store.journal.JournalPersistenceAdapterFactory;
-import org.springframework.beans.factory.FactoryBean;
-
-/**
- * Creates a default persistence model using the Journal and JDBC
- *
- * @org.apache.xbean.XBean element="journaledJDBC"
- *
- *
- */
-public class PersistenceAdapterFactoryBean extends JournalPersistenceAdapterFactory implements FactoryBean {
-
- private PersistenceAdapter persistenceAdaptor;
-
- public Object getObject() throws Exception {
- if (persistenceAdaptor == null) {
- persistenceAdaptor = createPersistenceAdapter();
- }
- return persistenceAdaptor;
- }
-
- public Class getObjectType() {
- return PersistenceAdapter.class;
- }
-
- public boolean isSingleton() {
- return false;
- }
-
-}
diff --git a/activemq-tooling/activemq-maven-plugin/pom.xml b/activemq-tooling/activemq-maven-plugin/pom.xml
index 47ed601154..793d0ab236 100644
--- a/activemq-tooling/activemq-maven-plugin/pom.xml
+++ b/activemq-tooling/activemq-maven-plugin/pom.xml
@@ -42,10 +42,6 @@
org.apache.activemq
activemq-console
-
- org.apache.activemq
- activeio-core
-
org.apache.derby
derby
diff --git a/activemq-tooling/activemq-memtest-maven-plugin/pom.xml b/activemq-tooling/activemq-memtest-maven-plugin/pom.xml
index 86efdb9d46..b00d48a2ff 100644
--- a/activemq-tooling/activemq-memtest-maven-plugin/pom.xml
+++ b/activemq-tooling/activemq-memtest-maven-plugin/pom.xml
@@ -43,10 +43,6 @@
org.apache.activemq
activemq-console
-
- org.apache.activemq
- activeio-core
-
org.apache.derby
derby
diff --git a/activemq-tooling/activemq-perf-maven-plugin/pom.xml b/activemq-tooling/activemq-perf-maven-plugin/pom.xml
index e0afe0ffa2..e366c14362 100644
--- a/activemq-tooling/activemq-perf-maven-plugin/pom.xml
+++ b/activemq-tooling/activemq-perf-maven-plugin/pom.xml
@@ -46,10 +46,6 @@
org.apache.activemq
activemq-console
-
- org.apache.activemq
- activeio-core
-
org.apache.derby
derby
diff --git a/activemq-unit-tests/pom.xml b/activemq-unit-tests/pom.xml
index 785818fc42..3b88e83af8 100644
--- a/activemq-unit-tests/pom.xml
+++ b/activemq-unit-tests/pom.xml
@@ -74,11 +74,6 @@
org.slf4j
slf4j-api
-
- ${project.groupId}
- activeio-core
- true
-
org.fusesource.mqtt-client
mqtt-client
diff --git a/activemq-unit-tests/src/test/java/org/apache/activemq/config/ConfigTest.java b/activemq-unit-tests/src/test/java/org/apache/activemq/config/ConfigTest.java
index a62ce071a5..4f5078c521 100644
--- a/activemq-unit-tests/src/test/java/org/apache/activemq/config/ConfigTest.java
+++ b/activemq-unit-tests/src/test/java/org/apache/activemq/config/ConfigTest.java
@@ -50,7 +50,6 @@ import org.apache.activemq.store.PersistenceAdapter;
import org.apache.activemq.store.jdbc.DefaultDatabaseLocker;
import org.apache.activemq.store.jdbc.JDBCPersistenceAdapter;
import org.apache.activemq.store.jdbc.adapter.TransactDatabaseLocker;
-import org.apache.activemq.store.journal.JournalPersistenceAdapter;
import org.apache.activemq.store.memory.MemoryPersistenceAdapter;
import org.apache.activemq.transport.tcp.TcpTransportServer;
import org.apache.activemq.usage.SystemUsage;
@@ -87,43 +86,6 @@ public class ConfigTest {
* for succeeding creation. It uses the first created directory as the root.
*/
- /*
- * This tests creating a journal persistence adapter using the persistence
- * adapter factory bean
- */
- @Test
- public void testJournaledJDBCConfig() throws Exception {
-
- File journalFile = new File(JOURNAL_ROOT + "testJournaledJDBCConfig/journal");
- recursiveDelete(journalFile);
-
- File derbyFile = new File(DERBY_ROOT + "testJournaledJDBCConfig/derbydb"); // Default
- recursiveDelete(derbyFile);
-
- BrokerService broker;
- broker = createBroker(new FileSystemResource(CONF_ROOT + "journaledjdbc-example.xml"));
- try {
- assertEquals("Broker Config Error (brokerName)", "brokerJournaledJDBCConfigTest", broker.getBrokerName());
-
- PersistenceAdapter adapter = broker.getPersistenceAdapter();
-
- assertTrue("Should have created a journal persistence adapter", adapter instanceof JournalPersistenceAdapter);
- assertTrue("Should have created a derby directory at " + derbyFile.getAbsolutePath(), derbyFile.exists());
- assertTrue("Should have created a journal directory at " + journalFile.getAbsolutePath(), journalFile.exists());
-
- // Check persistence factory configurations
- broker.getPersistenceAdapter();
-
- assertTrue(broker.getSystemUsage().getStoreUsage().getStore() instanceof JournalPersistenceAdapter);
-
- LOG.info("Success");
- } finally {
- if (broker != null) {
- broker.stop();
- }
- }
- }
-
@Test
public void testJdbcLockConfigOverride() throws Exception {
@@ -291,32 +253,6 @@ public class ConfigTest {
}
}
- /*
- * This tests creating a journal persistence adapter using xbeans-spring
- */
- @Test
- public void testJournalConfig() throws Exception {
- File journalFile = new File(JOURNAL_ROOT + "testJournalConfig/journal");
- recursiveDelete(journalFile);
-
- BrokerService broker;
- broker = createBroker(new FileSystemResource(CONF_ROOT + "journal-example.xml"));
- try {
- assertEquals("Broker Config Error (brokerName)", "brokerJournalConfigTest", broker.getBrokerName());
-
- PersistenceAdapter adapter = broker.getPersistenceAdapter();
-
- assertTrue("Should have created a journal persistence adapter", adapter instanceof JournalPersistenceAdapter);
- assertTrue("Should have created a journal directory at " + journalFile.getAbsolutePath(), journalFile.exists());
-
- LOG.info("Success");
- } finally {
- if (broker != null) {
- broker.stop();
- }
- }
- }
-
/*
* This tests creating a memory persistence adapter using xbeans-spring
*/
diff --git a/activemq-unit-tests/src/test/java/org/apache/activemq/perf/InactiveDurableTopicTest.java b/activemq-unit-tests/src/test/java/org/apache/activemq/perf/InactiveDurableTopicTest.java
index 9ab45b99bd..602c0f5050 100644
--- a/activemq-unit-tests/src/test/java/org/apache/activemq/perf/InactiveDurableTopicTest.java
+++ b/activemq-unit-tests/src/test/java/org/apache/activemq/perf/InactiveDurableTopicTest.java
@@ -61,13 +61,6 @@ public class InactiveDurableTopicTest extends TestCase {
broker = new BrokerService();
//broker.setPersistenceAdapter(new KahaPersistenceAdapter());
- /*
- * JournalPersistenceAdapterFactory factory = new
- * JournalPersistenceAdapterFactory();
- * factory.setDataDirectoryFile(broker.getDataDirectory());
- * factory.setTaskRunnerFactory(broker.getTaskRunnerFactory());
- * factory.setUseJournal(false); broker.setPersistenceFactory(factory);
- */
broker.addConnector(ActiveMQConnectionFactory.DEFAULT_BROKER_BIND_URL);
broker.start();
connectionFactory = new ActiveMQConnectionFactory(ActiveMQConnectionFactory.DEFAULT_BROKER_URL);
diff --git a/activemq-unit-tests/src/test/java/org/apache/activemq/perf/InactiveQueueTest.java b/activemq-unit-tests/src/test/java/org/apache/activemq/perf/InactiveQueueTest.java
index 866926233d..11ef88a99f 100644
--- a/activemq-unit-tests/src/test/java/org/apache/activemq/perf/InactiveQueueTest.java
+++ b/activemq-unit-tests/src/test/java/org/apache/activemq/perf/InactiveQueueTest.java
@@ -58,13 +58,7 @@ public class InactiveQueueTest extends TestCase {
// broker.setPersistenceAdapter(new KahaPersistenceAdapter(new File
// ("TEST_STUFD")));
- /*
- * JournalPersistenceAdapterFactory factory = new
- * JournalPersistenceAdapterFactory();
- * factory.setDataDirectoryFile(broker.getDataDirectory());
- * factory.setTaskRunnerFactory(broker.getTaskRunnerFactory());
- * factory.setUseJournal(false); broker.setPersistenceFactory(factory);
- */
+
broker.addConnector(ActiveMQConnectionFactory.DEFAULT_BROKER_BIND_URL);
broker.start();
connectionFactory = new ActiveMQConnectionFactory(ActiveMQConnectionFactory.DEFAULT_BROKER_URL);
diff --git a/activemq-unit-tests/src/test/java/org/apache/activemq/usecases/JournalDurableSubscriptionTest.java b/activemq-unit-tests/src/test/java/org/apache/activemq/usecases/JournalDurableSubscriptionTest.java
deleted file mode 100644
index 8634be320e..0000000000
--- a/activemq-unit-tests/src/test/java/org/apache/activemq/usecases/JournalDurableSubscriptionTest.java
+++ /dev/null
@@ -1,38 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.activemq.usecases;
-
-import java.io.File;
-import java.io.IOException;
-
-import org.apache.activemq.store.PersistenceAdapter;
-import org.apache.activemq.store.journal.JournalPersistenceAdapterFactory;
-
-/**
- *
- */
-public class JournalDurableSubscriptionTest extends DurableSubscriptionTestSupport {
-
- protected PersistenceAdapter createPersistenceAdapter() throws IOException {
- File dataDir = new File("target/test-data/durableJournal");
- JournalPersistenceAdapterFactory factory = new JournalPersistenceAdapterFactory();
- factory.setDataDirectoryFile(dataDir);
- factory.setUseJournal(true);
- factory.setJournalLogFileSize(1024 * 64);
- return factory.createPersistenceAdapter();
- }
-}
diff --git a/activemq-unit-tests/src/test/java/org/apache/activemq/xbean/JDBCPersistenceXBeanConfigTest.java b/activemq-unit-tests/src/test/java/org/apache/activemq/xbean/JDBCPersistenceXBeanConfigTest.java
deleted file mode 100644
index 5a34932e12..0000000000
--- a/activemq-unit-tests/src/test/java/org/apache/activemq/xbean/JDBCPersistenceXBeanConfigTest.java
+++ /dev/null
@@ -1,62 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.activemq.xbean;
-
-import java.net.URI;
-
-import junit.framework.TestCase;
-
-import org.apache.activemq.broker.BrokerFactory;
-import org.apache.activemq.broker.BrokerService;
-import org.apache.activemq.store.PersistenceAdapter;
-import org.apache.activemq.store.jdbc.JDBCPersistenceAdapter;
-
-/**
- *
- */
-public class JDBCPersistenceXBeanConfigTest extends TestCase {
-
- protected BrokerService brokerService;
-
- public void testConfiguredCorrectly() throws Exception {
-
- PersistenceAdapter persistenceAdapter = brokerService.getPersistenceAdapter();
- assertNotNull(persistenceAdapter);
- assertTrue(persistenceAdapter instanceof JDBCPersistenceAdapter);
-
- JDBCPersistenceAdapter jpa = (JDBCPersistenceAdapter)persistenceAdapter;
- assertEquals("BROKER1.", jpa.getStatements().getTablePrefix());
-
- }
-
- protected void setUp() throws Exception {
- brokerService = createBroker();
- brokerService.start();
- }
-
- protected void tearDown() throws Exception {
- if (brokerService != null) {
- brokerService.stop();
- }
- }
-
- protected BrokerService createBroker() throws Exception {
- String uri = "org/apache/activemq/xbean/jdbc-persistence-test.xml";
- return BrokerFactory.createBroker(new URI("xbean:" + uri));
- }
-
-}
diff --git a/activemq-unit-tests/src/test/resources/org/apache/activemq/broker/store/loadtester.xml b/activemq-unit-tests/src/test/resources/org/apache/activemq/broker/store/loadtester.xml
index 6383e84f1b..37124a9812 100644
--- a/activemq-unit-tests/src/test/resources/org/apache/activemq/broker/store/loadtester.xml
+++ b/activemq-unit-tests/src/test/resources/org/apache/activemq/broker/store/loadtester.xml
@@ -32,10 +32,13 @@
-
-
-
+
+
+
@@ -43,19 +46,5 @@
-
-
-
diff --git a/activemq-unit-tests/src/test/resources/org/apache/activemq/config/sample-conf/journal-example.xml b/activemq-unit-tests/src/test/resources/org/apache/activemq/config/sample-conf/journal-example.xml
deleted file mode 100644
index 2a79308dcf..0000000000
--- a/activemq-unit-tests/src/test/resources/org/apache/activemq/config/sample-conf/journal-example.xml
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- target/test-data/testJournalConfig/journal
-
-
-
-
-
-
diff --git a/activemq-unit-tests/src/test/resources/org/apache/activemq/config/sample-conf/journaledjdbc-example.xml b/activemq-unit-tests/src/test/resources/org/apache/activemq/config/sample-conf/journaledjdbc-example.xml
deleted file mode 100644
index 4a6a0db90c..0000000000
--- a/activemq-unit-tests/src/test/resources/org/apache/activemq/config/sample-conf/journaledjdbc-example.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/activemq-unit-tests/src/test/resources/org/apache/activemq/console/command/activemq.xml b/activemq-unit-tests/src/test/resources/org/apache/activemq/console/command/activemq.xml
index b2aaf16a09..de1220d6e5 100644
--- a/activemq-unit-tests/src/test/resources/org/apache/activemq/console/command/activemq.xml
+++ b/activemq-unit-tests/src/test/resources/org/apache/activemq/console/command/activemq.xml
@@ -26,13 +26,17 @@
-
+
-
-
-
+
+
+
-
+
diff --git a/activemq-unit-tests/src/test/resources/org/apache/activemq/usecases/activemq.xml b/activemq-unit-tests/src/test/resources/org/apache/activemq/usecases/activemq.xml
index b4954975b3..3e4af155e2 100644
--- a/activemq-unit-tests/src/test/resources/org/apache/activemq/usecases/activemq.xml
+++ b/activemq-unit-tests/src/test/resources/org/apache/activemq/usecases/activemq.xml
@@ -22,9 +22,9 @@
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd">
-
+
-
+
@@ -55,13 +55,13 @@
-->
-
-
-
-
-
+
+
+
@@ -69,40 +69,5 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/activemq-unit-tests/src/test/resources/org/apache/activemq/xbean/activemq.xml b/activemq-unit-tests/src/test/resources/org/apache/activemq/xbean/activemq.xml
index aadfa15dd2..a83ece2485 100644
--- a/activemq-unit-tests/src/test/resources/org/apache/activemq/xbean/activemq.xml
+++ b/activemq-unit-tests/src/test/resources/org/apache/activemq/xbean/activemq.xml
@@ -27,7 +27,7 @@
-
+
-
-
-
-
-
-
+
+
+
@@ -51,15 +50,5 @@
-
-
diff --git a/activemq-unit-tests/src/test/resources/org/apache/activemq/xbean/activemq2.xml b/activemq-unit-tests/src/test/resources/org/apache/activemq/xbean/activemq2.xml
index 78d19959f6..652968a55c 100644
--- a/activemq-unit-tests/src/test/resources/org/apache/activemq/xbean/activemq2.xml
+++ b/activemq-unit-tests/src/test/resources/org/apache/activemq/xbean/activemq2.xml
@@ -26,7 +26,7 @@
-
+
@@ -43,14 +43,17 @@
-
-
-
-
+
+
+
-
\ No newline at end of file
+
diff --git a/activemq-unit-tests/src/test/resources/org/apache/activemq/xbean/jdbc-persistence-test.xml b/activemq-unit-tests/src/test/resources/org/apache/activemq/xbean/jdbc-persistence-test.xml
deleted file mode 100644
index d00a8b980b..0000000000
--- a/activemq-unit-tests/src/test/resources/org/apache/activemq/xbean/jdbc-persistence-test.xml
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/activemq-web-demo/pom.xml b/activemq-web-demo/pom.xml
index 075d7fc173..1985afa609 100644
--- a/activemq-web-demo/pom.xml
+++ b/activemq-web-demo/pom.xml
@@ -171,16 +171,6 @@
test-jar
test
-
- ${project.groupId}
- activeio-core
-
-
- javax.servlet
- servlet-api
-
-
-
org.apache.activemq
activemq-jaas
diff --git a/assembly/pom.xml b/assembly/pom.xml
index 067c1b245a..a5d2b0cdb8 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -37,10 +37,6 @@
${project.groupId}
activemq-all
-
- ${project.groupId}
- activeio-core
-
${project.groupId}
activemq-client
diff --git a/assembly/src/main/descriptors/common-bin.xml b/assembly/src/main/descriptors/common-bin.xml
index 83dfba0f1d..f77fa1c7d2 100644
--- a/assembly/src/main/descriptors/common-bin.xml
+++ b/assembly/src/main/descriptors/common-bin.xml
@@ -184,7 +184,6 @@
${pom.groupId}:activemq-pool
${pom.groupId}:activemq-partition
${pom.groupId}:activemq-shiro
- ${pom.groupId}:activeio-core
commons-beanutils:commons-beanutils
commons-collections:commons-collections
commons-io:commons-io
diff --git a/assembly/src/release/examples/conf/activemq-demo.xml b/assembly/src/release/examples/conf/activemq-demo.xml
index 13524dbb64..8d050d2181 100644
--- a/assembly/src/release/examples/conf/activemq-demo.xml
+++ b/assembly/src/release/examples/conf/activemq-demo.xml
@@ -134,15 +134,6 @@
-
-
2023-03-28T14:10:59Z
- 3.1.4
activemq-${project.version}
Apache ActiveMQ
@@ -415,18 +414,6 @@
${project.version}
war
-
- org.apache.activemq
- activeio-core
- ${activeio-version}
-
-
- org.apache.activemq
- activeio-core
- ${activeio-version}
- test-jar
- test
-
org.apache.activemq
activemq-openwire-generator