Files
Lukasz Lenart 50c16e93b1 Release 7.2.1-RC1 (#1744)
* [maven-release-plugin] prepare release STRUTS_7_2_1

* [maven-release-plugin] prepare for next development iteration
2026-06-26 07:18:26 +02:00
..
2026-06-26 07:18:26 +02:00

Struts 2 BOM

This is a Bill-Of-Materials to be used with Maven based project. It allows to import all the Struts 2 dependencies at once and used them in your project where needed.

Installation

You must add a proper import statement into your pom.xml as presented below:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.apache.struts</groupId>
            <artifactId>struts2-bom</artifactId>
            <version>${struts2.version}</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>