[java-parent-project] 02/02: JPAR-104 - fix mvn dependency:analyze for Java 11
Ian Young
ian at iay.org.uk
Sun Feb 3 07:16:31 EST 2019
This is an automated email from the git hooks/post-receive script.
iay pushed a commit to branch master
in repository java-parent-project.
View the commit online:
http://git.shibboleth.net/view/?p=java-parent-project.git;a=commit;h=206c368b3e5c10ed1223a7fa0891f114b80c9697
commit 206c368b3e5c10ed1223a7fa0891f114b80c9697
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Sun Feb 3 12:15:56 2019 +0000
JPAR-104 - fix mvn dependency:analyze for Java 11
---
pom.xml | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index c434b11..a9b5265 100644
--- a/pom.xml
+++ b/pom.xml
@@ -47,6 +47,7 @@
<checkstyle-plugin.version>2.17</checkstyle-plugin.version>
<checkstyle.configLocation>checkstyle.xml</checkstyle.configLocation>
+ <maven-dependency-plugin.version>3.1.1</maven-dependency-plugin.version>
<maven-javadoc-plugin.version>3.0.1</maven-javadoc-plugin.version>
<maven.central.url>http://repo1.maven.org/maven2</maven.central.url>
@@ -573,7 +574,14 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
- <version>3.0.2</version>
+ <version>${maven-dependency-plugin.version}</version>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.maven.shared</groupId>
+ <artifactId>maven-dependency-analyzer</artifactId>
+ <version>1.11.1</version>
+ </dependency>
+ </dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list