We're independently controlling dep versions in the various maven modules in this repo, and it's messy. For example we have 3 different version of WildFly declared in 7 different locations, all badly out of date:
$ git grep version.org.wildfly\> | grep -v \{
authentication/wildfly-mods/profile.xml: <version.org.wildfly>27.0.0.Alpha4</version.org.wildfly>
authentication/wildfly/pom.xml: <version.org.wildfly>27.0.0.Alpha4</version.org.wildfly>
concurrency/concurrency-tck-runner/pom.xml: <version.org.wildfly>27.0.0.Alpha3</version.org.wildfly>
faces/wildfly/pom.xml: <version.org.wildfly>27.0.0.Alpha4</version.org.wildfly>
security/wildfly-mods/profile.xml: <version.org.wildfly>27.0.0.Alpha4</version.org.wildfly>
security/wildfly/pom.xml: <version.org.wildfly>27.0.0.Alpha4</version.org.wildfly>
wf-core-tck-runner/pom.xml: <version.org.wildfly>27.0.0.Beta1</version.org.wildfly>
A fix for this would likely require changes to the Jenkins jobs that run these (perhaps just adding -am to mvn commands) and would probably force an adjustment to the maven versions of the various modules themselves (which seems needed regardless as none of them use -SNAPSHOT).
We're independently controlling dep versions in the various maven modules in this repo, and it's messy. For example we have 3 different version of WildFly declared in 7 different locations, all badly out of date:
A fix for this would likely require changes to the Jenkins jobs that run these (perhaps just adding -am to mvn commands) and would probably force an adjustment to the maven versions of the various modules themselves (which seems needed regardless as none of them use -SNAPSHOT).