|
Hi Matej,
I refer to the weld-core-bom that states
Weld Core "bill of materials" which can be imported by any project using the Weld implementation of CDI.
It provides dependency management for the implementation.
This BOM currently does not however provide dependencymanagement, but instead has dependencies to most weld modules and two other artifacts (guava and javax.inject-tck). In addition to that it inherits some dependencymanagement from weld-core-parent and imports some more from weld-api-bom.
I want a BOM that can be used like described in https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html . There should be all Weld Modules with their current Version as dependencymanagement in there and nothing (or at least not much) else.
That way I could put something like that in our parent POM and be done:
<dependencyManagement>
|
<dependency>
|
<groupId>org.jboss.weld</groupId>
|
<artifactId>weld-bom</artifactId>
|
<version>${weld.api.version}</version>
|
<scope>import</scope>
|
<type>pom</type>
|
</dependency>
|
</dependencyManagement>
|
Please fell free to ask again if anything is unclear.
TIA Jörg
|