Skip to content

Commit 0c728de

Browse files
authored
Merge pull request #4 from aerospike/set-project-version-to-release
Bump dependencies versions and set project version to 1.0.0.
2 parents 5d98cce + ed31ee2 commit 0c728de

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed

pom.xml

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.aerospike</groupId>
77
<artifactId>java-object-mapper</artifactId>
8-
<version>0.0.1</version>
8+
<version>1.0.0</version>
99
<packaging>jar</packaging>
1010

1111
<name>Aerospike Object Mapper</name>
@@ -14,48 +14,52 @@
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1515
<java.version>1.8</java.version>
1616
<maven.compiler.target>1.8</maven.compiler.target>
17-
<maven.compiler.source>1.8</maven.compiler.source>
18-
<maven.compiler.plugin.version>3.5.1</maven.compiler.plugin.version>
17+
<maven.compiler.source>1.8</maven.compiler.source>
18+
<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.2</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>
@@ -73,10 +77,10 @@
7377
</plugin>
7478
<plugin>
7579
<artifactId>maven-compiler-plugin</artifactId>
76-
<version>2.3.2</version>
80+
<version>${maven.compiler.plugin.version}</version>
7781
<configuration>
78-
<source>1.8</source>
79-
<target>1.8</target>
82+
<source>${maven.compiler.source}</source>
83+
<target>${maven.compiler.target}</target>
8084
</configuration>
8185
</plugin>
8286
<plugin>

0 commit comments

Comments
 (0)