This is an automated email from the ASF dual-hosted git repository.
veithen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ws-axiom.git
The following commit(s) were added to refs/heads/master by this push:
new bb8a5830d Allow Dependabot to update the Wildfly version
bb8a5830d is described below
commit bb8a5830d68274f6fb96b02e850f9be957950bd1
Author: Andreas Veithen <[email protected]>
AuthorDate: Sun May 1 11:02:49 2022 +0000
Allow Dependabot to update the Wildfly version
---
systests/wildfly-tests/pom.xml | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/systests/wildfly-tests/pom.xml b/systests/wildfly-tests/pom.xml
index bcefe402b..059e6ced4 100644
--- a/systests/wildfly-tests/pom.xml
+++ b/systests/wildfly-tests/pom.xml
@@ -37,6 +37,16 @@
<wildfly.jigsawArgs>--add-modules java.se</wildfly.jigsawArgs>
</properties>
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.wildfly</groupId>
+ <artifactId>wildfly-dist</artifactId>
+ <!-- This makes the version manageable with Dependabot -->
+ <version>${wildfly.version}</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
@@ -125,7 +135,6 @@
<artifactItem>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-dist</artifactId>
- <version>${wildfly.version}</version>
<type>zip</type>
<overWrite>false</overWrite>
<outputDirectory>target</outputDirectory>