-
Notifications
You must be signed in to change notification settings - Fork 78
Closed
Labels
Milestone
Description
I figured that there is a number of xmlunit artifacts, so it might be useful to provide a BOM (Bill Of Materials) that lists all versions of all artifacts in a central place.
Such a thing could then be consumed in a Maven multi project build through
<dependencyManagement>
<dependency>
<groupId>org.xmlunit</groupId>
<artifactId>xmlunit-bom</artifactId>
<version>${xmlunit.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
[...]
</dependencyManagement>
and this could be referenced in individual module files like so:
<dependencies>
<dependency>
<groupId>org.xmlunit</groupId>
<artifactId>xmlunit-core</artifactId>
</dependency>
<dependency>
<groupId>org.xmlunit</groupId>
<artifactId>xmlunit-matchers</artifactId>
</dependency>
[...]
</dependencies>
Examples:
Creating and publishing such a BOM would help a lot. Thanks!