This is an automated email from the ASF dual-hosted git repository. pottlinger pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/creadur-whisker.git
commit c68ea21d7bcfac3f9b954ead2d2e30d000e5b301 Author: Hugo Hirsch <[email protected]> AuthorDate: Tue May 18 12:50:42 2021 +0200 WHISKER-19: Update to JDK8 in order to pull in recent commons-io --- pom.xml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pom.xml b/pom.xml index 79e3db5..17cc737 100644 --- a/pom.xml +++ b/pom.xml @@ -54,7 +54,7 @@ <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> - <version>2.4</version> + <version>2.8.0</version> </dependency> <dependency> <groupId>commons-logging</groupId> @@ -91,7 +91,7 @@ </modules> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <target.jdk>1.6</target.jdk> + <target.jdk>1.8</target.jdk> <junit.version>4.13.1</junit.version> <!-- This is the version of Maven required to use the Maven Plugin for this project --> <mavenVersion>2.2.1</mavenVersion> @@ -141,7 +141,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> - <version>3.4</version> + <version>3.9.1</version> <configuration> <outputEncoding>${project.build.sourceEncoding}</outputEncoding> <inputEncoding>${project.build.sourceEncoding}</inputEncoding> @@ -211,12 +211,12 @@ <artifactId>jdepend-maven-plugin</artifactId> <version>2.0</version> </plugin> - <!-- cobertura plugin --> + <!-- cobertura plugin not working as newer JDKs do not have tools.jar <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> - <version>2.6</version> - </plugin> + <version>2.7</version> + </plugin --> <!-- catch code tags --> <plugin> <groupId>org.codehaus.mojo</groupId> @@ -330,7 +330,7 @@ <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> - <version>1.11</version> + <version>1.20</version> <executions> <execution> <!-- This checks the source code of our project --> @@ -347,7 +347,7 @@ --> <signature> <groupId>org.codehaus.mojo.signature</groupId> - <artifactId>java16</artifactId> + <artifactId>java18</artifactId> <version>1.0</version> </signature> </configuration>
