You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by el...@apache.org on 2020/07/30 23:47:50 UTC

[maven-pmd-plugin] 01/01: explicitly declare dependencies

This is an automated email from the ASF dual-hosted git repository.

elharo pushed a commit to branch lyze
in repository https://gitbox.apache.org/repos/asf/maven-pmd-plugin.git

commit b353452b3d1915fa1120c854895c5ed9ce2f0a5e
Author: Elliotte Rusty Harold <el...@ibiblio.org>
AuthorDate: Thu Jul 30 19:47:40 2020 -0400

    explicitly declare dependencies
---
 pom.xml | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/pom.xml b/pom.xml
index 70efea8..8c34b0c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -99,6 +99,11 @@ under the License.
     <!-- maven -->
     <dependency>
       <groupId>org.apache.maven</groupId>
+      <artifactId>maven-core</artifactId>
+      <version>${mavenVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
       <artifactId>maven-artifact</artifactId>
       <version>${mavenVersion}</version>
     </dependency>
@@ -122,6 +127,11 @@ under the License.
       <artifactId>maven-artifact-transfer</artifactId>
       <version>0.10.0</version>
     </dependency>
+    <dependency>
+      <groupId>org.apache.maven.shared</groupId>
+      <artifactId>maven-common-artifact-filters</artifactId>
+      <version>3.0.1</version>
+    </dependency>
 
     <!-- pmd -->
     <dependency>
@@ -131,6 +141,11 @@ under the License.
         <version>1.3</version>
     </dependency>
     <dependency>
+        <groupId>org.apache.commons</groupId>
+        <artifactId>commons-lang3</artifactId>
+        <version>3.7</version>
+    </dependency>
+    <dependency>
       <groupId>net.sourceforge.pmd</groupId>
       <artifactId>pmd-core</artifactId>
       <version>${pmdVersion}</version>