Skip to content

Provide a bill of materials (BOM) #268

@bjmi

Description

@bjmi

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!

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions