Remove usage of deprecated maven expressions

This commit replaces the usage of `${parent.version}`
with `${project.parent.version}` to fix the following
maven warning:

```
[WARNING] The expression ${parent.version} is deprecated.
Please use ${project.parent.version} instead.
```
This commit is contained in:
Mahmoud Ben Hassine
2023-02-07 22:45:43 +01:00
parent de4508b4ff
commit 2de8956840
5 changed files with 9 additions and 9 deletions

View File

@@ -46,22 +46,22 @@
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-core</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-infrastructure</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-integration</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-test</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

View File

@@ -23,7 +23,7 @@
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-infrastructure</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>

View File

@@ -22,7 +22,7 @@
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-core</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.integration</groupId>
@@ -65,7 +65,7 @@
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-test</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
<scope>test</scope>
</dependency>
<dependency>

View File

@@ -20,7 +20,7 @@
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-bom</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

View File

@@ -23,7 +23,7 @@
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-core</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>