Files
spring-batch/spring-batch-bom/pom.xml
Mahmoud Ben Hassine 70b8576426 Next development version
2024-12-18 21:38:44 +01:00

70 lines
2.2 KiB
XML

<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch</artifactId>
<version>5.2.2-SNAPSHOT</version>
</parent>
<artifactId>spring-batch-bom</artifactId>
<packaging>pom</packaging>
<name>Spring Batch BOM</name>
<description>Bill of materials for Spring Batch modules</description>
<url>https://projects.spring.io/spring-batch</url>
<organization>
<name>Spring</name>
<url>https://spring.io</url>
</organization>
<scm>
<url>https://github.com/spring-projects/spring-batch</url>
<connection>git://github.com/spring-projects/spring-batch.git</connection>
<developerConnection>git@github.com:spring-projects/spring-batch.git</developerConnection>
</scm>
<issueManagement>
<system>Github Issues</system>
<url>https://github.com/spring-projects/spring-batch/issues</url>
</issueManagement>
<ciManagement>
<system>Github Actions</system>
<url>https://github.com/spring-projects/spring-batch/actions</url>
</ciManagement>
<licenses>
<license>
<name>Apache 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-core</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-infrastructure</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-integration</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-test</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>