mirror of
https://github.com/apache/struts.git
synced 2026-08-11 01:27:14 +00:00
21 lines
632 B
Markdown
21 lines
632 B
Markdown
# 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:
|
|
|
|
```xml
|
|
<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>
|
|
```
|