Skip to content

Commit f61dac7

Browse files
committed
Major Release 2.0.0 - Update to Java 8
Other version updates JUnit > 4.12 GMavenPlus > 1.7.0 OpenClover > 4.3.1 Apache POI > 4.1.0 Misc Maven plugins Update JDK for Travis CI Ubuntu Trusty build environment
1 parent 9a71b86 commit f61dac7

3 files changed

Lines changed: 22 additions & 13 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: java
22
jdk:
3-
- openjdk7
3+
- openjdk8 #Ubuntu Trusty Build Environment on Google Compute Engine (GCE)
44

55
install: true
66

ReleaseNotes.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
Version History
22

3+
----------------------------------------------------------------------------------------------------
4+
2.0.0 - Released 13 May 2019
5+
----------------------------------------------------------------------------------------------------
6+
i) Update to JDK 8 to synchronise with JRE/JVM version update on CPI tenant
7+
8+
ii) Update Apache POI library (used for Excel conversion) to 4.1.0 (which requires Java 8)
9+
10+
iii) Update miscellaneous other libraries - JUnit, Maven, OpenClover, GMavenPlus
11+
312
----------------------------------------------------------------------------------------------------
413
1.4.0 - Released 1 May 2019
514
----------------------------------------------------------------------------------------------------

pom.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
<groupId>com.equalize.cpi</groupId>
88
<artifactId>converter-core</artifactId>
9-
<version>1.4.0</version>
9+
<version>2.0.0</version>
1010

1111
<name>converter-core</name>
1212
<url>https://github.com/engswee/equalize-cpi-converter</url>
1313

1414
<properties>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16-
<maven.compiler.source>1.7</maven.compiler.source>
17-
<maven.compiler.target>1.7</maven.compiler.target>
16+
<maven.compiler.source>1.8</maven.compiler.source>
17+
<maven.compiler.target>1.8</maven.compiler.target>
1818
</properties>
1919

2020
<dependencies>
@@ -31,7 +31,7 @@
3131
<dependency>
3232
<groupId>junit</groupId>
3333
<artifactId>junit</artifactId>
34-
<version>4.11</version>
34+
<version>4.12</version>
3535
<scope>test</scope>
3636
</dependency>
3737
<dependency>
@@ -43,7 +43,7 @@
4343
<dependency>
4444
<groupId>org.apache.poi</groupId>
4545
<artifactId>poi-ooxml</artifactId>
46-
<version>3.17</version>
46+
<version>4.1.0</version>
4747
</dependency>
4848
</dependencies>
4949

@@ -62,7 +62,7 @@
6262
<plugin>
6363
<groupId>org.codehaus.gmavenplus</groupId>
6464
<artifactId>gmavenplus-plugin</artifactId>
65-
<version>1.6.1</version>
65+
<version>1.7.0</version>
6666
<executions>
6767
<execution>
6868
<goals>
@@ -81,7 +81,7 @@
8181
<plugin>
8282
<groupId>org.openclover</groupId>
8383
<artifactId>clover-maven-plugin</artifactId>
84-
<version>4.3.0</version>
84+
<version>4.3.1</version>
8585
<configuration>
8686
<excludes>
8787
<exclude>**/org/json/*.java</exclude>
@@ -122,24 +122,24 @@
122122
<plugins>
123123
<plugin>
124124
<artifactId>maven-clean-plugin</artifactId>
125-
<version>3.0.0</version>
125+
<version>3.1.0</version>
126126
</plugin>
127127
<!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
128128
<plugin>
129129
<artifactId>maven-resources-plugin</artifactId>
130-
<version>3.0.2</version>
130+
<version>3.1.0</version>
131131
</plugin>
132132
<plugin>
133133
<artifactId>maven-compiler-plugin</artifactId>
134-
<version>3.7.0</version>
134+
<version>3.8.1</version>
135135
</plugin>
136136
<plugin>
137137
<artifactId>maven-surefire-plugin</artifactId>
138-
<version>2.20.1</version>
138+
<version>2.22.2</version>
139139
</plugin>
140140
<plugin>
141141
<artifactId>maven-jar-plugin</artifactId>
142-
<version>3.0.2</version>
142+
<version>3.1.2</version>
143143
</plugin>
144144
<plugin>
145145
<artifactId>maven-install-plugin</artifactId>

0 commit comments

Comments
 (0)