From 61677218e812509882467c98000318cb5e20bb90 Mon Sep 17 00:00:00 2001 From: Mradul Singhal Date: Mon, 13 Mar 2023 10:59:23 -0400 Subject: [PATCH 1/2] updated libraries, added java-11 support --- pom.xml | 40 ++++++++++++++++++++++++++-------------- 1 file changed, 26 insertions(+), 14 deletions(-) diff --git a/pom.xml b/pom.xml index 17358c0..434169d 100644 --- a/pom.xml +++ b/pom.xml @@ -1,5 +1,7 @@ - + 4.0.0 @@ -39,19 +41,20 @@ UTF-8 + 11 + 11 junit junit - 4.13.1 - test + 4.13.2 nl.jqno.equalsverifier equalsverifier - 2.3.2 + 3.14 test @@ -61,20 +64,27 @@ org.apache.maven.plugins maven-compiler-plugin - 3.6.0 + 3.8.0 - 8 - 8 + + 11 + 11 false + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + maven-jar-plugin - 3.0.2 + 3.3.0 - true + + true true @@ -83,7 +93,7 @@ maven-javadoc-plugin - 2.10.4 + 3.5.0 attach-javadoc @@ -93,7 +103,8 @@ - true + + true private ${project.name}]]> @@ -103,7 +114,7 @@ maven-source-plugin - 3.0.1 + 3.2.1 attach-sources @@ -115,7 +126,7 @@ maven-surefire-plugin - 2.19.1 + 3.0.0-M9 @@ -131,7 +142,8 @@ cobertura-maven-plugin 2.7 - xml + + xml 256m From 39a261fbbb4c82db85e5d0053d5554dd5526c1a1 Mon Sep 17 00:00:00 2001 From: Mradul Singhal Date: Mon, 13 Mar 2023 11:02:18 -0400 Subject: [PATCH 2/2] updated libraries, added java-11 support --- pom.xml | 2 +- src/main/java/module-info.java | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 src/main/java/module-info.java diff --git a/pom.xml b/pom.xml index 434169d..527e662 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ com.mpatric mp3agic - 0.9.2-SNAPSHOT + 0.10.0 mp3agic A java library for reading mp3 files and manipulating mp3 file ID3 tags (ID3v1 and ID3v2.2 to ID3v2.4). diff --git a/src/main/java/module-info.java b/src/main/java/module-info.java new file mode 100644 index 0000000..3b898fb --- /dev/null +++ b/src/main/java/module-info.java @@ -0,0 +1,3 @@ +module com.mpatric.mp3agic { + exports com.mpatric.mp3agic; +}