Skip to content

Commit 6de9797

Browse files
authored
Release 1.4.0
1 parent 1b0c86b commit 6de9797

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ dependency into your project's `pom.xml`:
6060
<dependency>
6161
<groupId>com.amazon.ion</groupId>
6262
<artifactId>ion-java</artifactId>
63-
<version>1.3.1</version>
63+
<version>1.4.0</version>
6464
</dependency>
6565
```
6666

pom.xml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<modelVersion>4.0.0</modelVersion>
1919
<groupId>com.amazon.ion</groupId>
2020
<artifactId>ion-java</artifactId>
21-
<version>1.3.1</version>
21+
<version>1.4.0</version>
2222
<packaging>bundle</packaging>
2323

2424
<name>${project.groupId}:${project.artifactId}</name>
@@ -65,6 +65,7 @@
6565
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6666
<maven.build.timestamp.format>yyyy</maven.build.timestamp.format>
6767
<build.year>${maven.build.timestamp}</build.year>
68+
<jdkVersion>1.6</jdkVersion>
6869
</properties>
6970

7071
<dependencies>
@@ -86,8 +87,8 @@
8687
<artifactId>maven-compiler-plugin</artifactId>
8788
<version>3.8.0</version>
8889
<configuration>
89-
<source>1.6</source>
90-
<target>1.6</target>
90+
<source>${jdkVersion}</source>
91+
<target>${jdkVersion}</target>
9192
</configuration>
9293
</plugin>
9394
<plugin>
@@ -264,6 +265,9 @@
264265
<profiles>
265266
<profile>
266267
<id>release</id>
268+
<properties>
269+
<jdkVersion>1.5</jdkVersion>
270+
</properties>
267271
<build>
268272
<plugins>
269273
<plugin>

0 commit comments

Comments
 (0)