Skip to content

Commit 36897b0

Browse files
committed
1. Use properties section for dependencies versioning.
2. Bump all dependencies versions to the latest.
1 parent 1e27157 commit 36897b0

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

pom.xml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,46 +16,50 @@
1616
<maven.compiler.target>1.8</maven.compiler.target>
1717
<maven.compiler.source>1.8</maven.compiler.source>
1818
<maven.compiler.plugin.version>3.8.0</maven.compiler.plugin.version>
19+
<junit.version>4.13.2</junit.version>
20+
<javax.validation-api.version>2.0.1.Final</javax.validation-api.version>
21+
<aerospike-client.version>5.0.7</aerospike-client.version>
22+
<commons-lang3.version>3.12.0</commons-lang3.version>
23+
<jackson-dataformat-yaml.version>2.12.3</jackson-dataformat-yaml.version>
1924
</properties>
2025

2126
<dependencies>
2227
<dependency>
2328
<groupId>junit</groupId>
2429
<artifactId>junit</artifactId>
25-
<version>4.4</version>
30+
<version>${junit.version}</version>
2631
<scope>test</scope>
2732
</dependency>
2833

2934
<!-- https://mvnrepository.com/artifact/javax.validation/validation-api -->
3035
<dependency>
3136
<groupId>javax.validation</groupId>
3237
<artifactId>validation-api</artifactId>
33-
<version>2.0.1.Final</version>
38+
<version>${javax.validation-api.version}</version>
3439
</dependency>
3540

3641
<!-- https://mvnrepository.com/artifact/com.aerospike/aerospike-client -->
3742
<dependency>
3843
<groupId>com.aerospike</groupId>
3944
<artifactId>aerospike-client</artifactId>
40-
<version>5.0.2</version>
45+
<version>${aerospike-client.version}</version>
4146
</dependency>
4247

4348

4449
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
4550
<dependency>
4651
<groupId>org.apache.commons</groupId>
4752
<artifactId>commons-lang3</artifactId>
48-
<version>3.7</version>
53+
<version>${commons-lang3.version}</version>
4954
</dependency>
5055

5156
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml -->
5257
<!-- Needed to parse the options file -->
5358
<dependency>
5459
<groupId>com.fasterxml.jackson.dataformat</groupId>
5560
<artifactId>jackson-dataformat-yaml</artifactId>
56-
<version>2.12.1</version>
61+
<version>${jackson-dataformat-yaml.version}</version>
5762
</dependency>
58-
5963
</dependencies>
6064
<build>
6165
<plugins>

0 commit comments

Comments
 (0)