| Gunnar Morling so after creating module zip and using it for integration module rather than replacing embedded in wildfly the tests are failing and are not using the added modules. after looking and trying different things I've found out that if in all other modules we replace the dependencies from things like
<module name="org.hibernate.validator"/>
to
<module name="org.hibernate.validator" slot="SomeVersionGoesHere"/>
the test start to pass and other modules are using the 'updated' HV module. The question is - would it be a correct solution to add back a groovy script and change the logic in it to go through all of the modules that depend on HV and add this part to them:
slot="SomeVersionGoesHere"
|