Introduce a Spring WS BOM.

Align with other projects from the portfolio and provide a spring-ws-bom to make it easier to manage dependencies.

Resolves #1205.
This commit is contained in:
Marten Deinum
2022-10-20 10:58:22 +02:00
committed by Greg L. Turnquist
parent cbb75c7d29
commit 987a9afddf
2 changed files with 48 additions and 0 deletions

View File

@@ -76,6 +76,7 @@
<module>spring-ws-support</module>
<module>spring-ws-test</module>
<module>spring-xml</module>
<module>spring-ws-bom</module>
</modules>
<properties>

47
spring-ws-bom/pom.xml Normal file
View File

@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws</artifactId>
<version>4.0.0-SNAPSHOT</version>
</parent>
<artifactId>spring-ws-bom</artifactId>
<packaging>pom</packaging>
<description>Spring WS - Bill of Materials (BOM)</description>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-core</artifactId>
<version>4.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-security</artifactId>
<version>4.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-support</artifactId>
<version>4.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-test</artifactId>
<version>4.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-xml</artifactId>
<version>4.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>