This is an automated email from the ASF dual-hosted git repository.
turcsanyi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new f2263458f0 NIFI-13013 Upgraded ActiveMQ from 6.0.1 to 6.1.1
f2263458f0 is described below
commit f2263458f0a638ce6be6b119a7e6923297379abe
Author: exceptionfactory <[email protected]>
AuthorDate: Mon Apr 8 19:52:49 2024 -0500
NIFI-13013 Upgraded ActiveMQ from 6.0.1 to 6.1.1
This closes #8614.
Signed-off-by: Peter Turcsanyi <[email protected]>
---
nifi-nar-bundles/nifi-jms-bundle/nifi-jms-processors/pom.xml | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/nifi-nar-bundles/nifi-jms-bundle/nifi-jms-processors/pom.xml
b/nifi-nar-bundles/nifi-jms-bundle/nifi-jms-processors/pom.xml
index f3ee0a76b2..1e3c0ec70f 100644
--- a/nifi-nar-bundles/nifi-jms-bundle/nifi-jms-processors/pom.xml
+++ b/nifi-nar-bundles/nifi-jms-bundle/nifi-jms-processors/pom.xml
@@ -17,6 +17,11 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>nifi-jms-processors</artifactId>
<packaging>jar</packaging>
+
+ <properties>
+ <activemq.version>6.1.1</activemq.version>
+ </properties>
+
<dependencies>
<dependency>
<groupId>org.apache.nifi</groupId>
@@ -71,13 +76,13 @@
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-client</artifactId>
- <version>6.0.1</version>
+ <version>${activemq.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-broker</artifactId>
- <version>6.0.1</version>
+ <version>${activemq.version}</version>
<scope>test</scope>
</dependency>
<dependency>