This is an automated email from the ASF dual-hosted git repository.
robbie pushed a commit to branch development
in repository https://gitbox.apache.org/repos/asf/activemq-artemis-examples.git
The following commit(s) were added to refs/heads/development by this push:
new 1071d25 ARTEMIS-5202: update deltaspike + weld versions in cdi
example to get working on Java 17 without env config tweaks
1071d25 is described below
commit 1071d25d5df195f3df2bd11b8328c772209162cc
Author: Robbie Gemmell <[email protected]>
AuthorDate: Tue Dec 10 15:45:53 2024 +0000
ARTEMIS-5202: update deltaspike + weld versions in cdi example to get
working on Java 17 without env config tweaks
---
examples/features/standard/cdi/pom.xml | 17 +++++++++++++++--
1 file changed, 15 insertions(+), 2 deletions(-)
diff --git a/examples/features/standard/cdi/pom.xml
b/examples/features/standard/cdi/pom.xml
index 9e9f8da..7b1727f 100644
--- a/examples/features/standard/cdi/pom.xml
+++ b/examples/features/standard/cdi/pom.xml
@@ -33,9 +33,22 @@
<properties>
<activemq.basedir>${project.basedir}/../../../..</activemq.basedir>
- <deltaspike.version>1.7.1</deltaspike.version>
+ <deltaspike.version>1.9.6</deltaspike.version>
+ <weld.version>3.1.9.Final</weld.version>
</properties>
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.weld</groupId>
+ <artifactId>weld-core-bom</artifactId>
+ <version>${weld.version}</version>
+ <type>pom</type>
+ <scope>import</scope>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
<dependencies>
<dependency>
<groupId>org.apache.activemq</groupId>
@@ -149,7 +162,7 @@
</dependency>
<dependency>
<groupId>org.jboss.weld.se</groupId>
- <artifactId>weld-se</artifactId>
+ <artifactId>weld-se-shaded</artifactId>
<version>${weld.version}</version>
</dependency>
<dependency>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact