Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apache-activemq/NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache ActiveMQ
Copyright 2005-2023 The Apache Software Foundation
Copyright 2005-2026 The Apache Software Foundation

This product includes software developed by
The Apache Software Foundation (http://www.apache.org/).
Expand Down
Binary file not shown.
Binary file modified apache-activemq/bin/activemq.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion apache-activemq/conf/activemq.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<!--
The <broker> element is used to configure the ActiveMQ broker.
-->
<broker xmlns="http://activemq.apache.org/schema/core" brokerName="localhost" dataDirectory="${activemq.data}">
<broker xmlns="http://activemq.apache.org/schema/core" brokerName="localhost" dataDirectory="${activemq.data}" id="broker">

<destinationPolicy>
<policyMap>
Expand Down
6 changes: 3 additions & 3 deletions apache-activemq/conf/jetty.xml
Original file line number Diff line number Diff line change
Expand Up @@ -202,10 +202,10 @@
</property>
</bean>

<bean id="invokeStart" class="org.springframework.beans.factory.config.MethodInvokingFactoryBean"
depends-on="configureJetty, invokeConnectors">
<bean id="invokeStart" class="org.springframework.beans.factory.config.MethodInvokingFactoryBean"
depends-on="broker, configureJetty, invokeConnectors">
<property name="targetObject" ref="Server" />
<property name="targetMethod" value="start" />
<property name="targetMethod" value="start" />
</bean>


Expand Down
2 changes: 1 addition & 1 deletion apache-activemq/examples/conf/activemq-demo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
- Change the brokerName attribute to something unique
-->

<broker xmlns="http://activemq.apache.org/schema/core" brokerName="amq-broker" useJmx="true">
<broker xmlns="http://activemq.apache.org/schema/core" brokerName="amq-broker" useJmx="true" id="broker">

<!--
Examples of destination-specific policies using destination
Expand Down
2 changes: 1 addition & 1 deletion apache-activemq/examples/conf/activemq-security.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
</bean>
-->

<broker useJmx="true" persistent="false" xmlns="http://activemq.apache.org/schema/core" >
<broker useJmx="true" persistent="false" xmlns="http://activemq.apache.org/schema/core" id="broker">

<managementContext>
<managementContext createConnector="true">
Expand Down
2 changes: 1 addition & 1 deletion apache-activemq/examples/conf/activemq-stomp.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<!--
The <broker> element is used to configure the ActiveMQ broker.
-->
<broker xmlns="http://activemq.apache.org/schema/core" brokerName="localhost" dataDirectory="${activemq.data}">
<broker xmlns="http://activemq.apache.org/schema/core" brokerName="localhost" dataDirectory="${activemq.data}" id="broker">

<!--
For better performances use VM cursor and small memory limit.
Expand Down
4 changes: 2 additions & 2 deletions apache-activemq/examples/openwire/advanced-scenarios/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-client</artifactId>
<version>5.19.1</version>
<version>5.19.6</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<version>2.0.16</version>
<version>2.0.17</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions apache-activemq/examples/openwire/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-client</artifactId>
<version>5.19.1</version>
<version>5.19.6</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<version>2.0.16</version>
<version>2.0.17</version>
</dependency>
</dependencies>

Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed apache-activemq/lib/optional/log4j-api-2.24.3.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
5 changes: 1 addition & 4 deletions apache-activemq/webapps-demo/demo/js/head.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,4 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

window.onload = function () {
addEvent(window, 'load', prettyPrint)
}
addEvent(window, 'load', (_event) => prettyPrint());
Binary file not shown.
Binary file not shown.
Binary file not shown.
5 changes: 1 addition & 4 deletions apache-activemq/webapps/admin/js/head.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,4 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

window.onload = function () {
addEvent(window, 'load', prettyPrint)
}
addEvent(window, 'load', (_event) => prettyPrint());