You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemds.apache.org by ma...@apache.org on 2021/06/14 08:40:32 UTC

[systemds] branch master updated: [MINOR] Add maven-assembly-plugin to dependencies in pom.xml

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

markd pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/systemds.git


The following commit(s) were added to refs/heads/master by this push:
     new 1a8a76b  [MINOR] Add maven-assembly-plugin to dependencies in pom.xml
1a8a76b is described below

commit 1a8a76b86d9bc718ec197122799405b3ee45264d
Author: Mark Dokter <ma...@dokter.cc>
AuthorDate: Mon Jun 14 10:39:13 2021 +0200

    [MINOR] Add maven-assembly-plugin to dependencies in pom.xml
    
    Without listing the plugin in the dependencies section, IntelliJ complains that it does not find the plugin and display an error. This fix basically improves pom.xml from correct to "more correct".
---
 pom.xml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/pom.xml b/pom.xml
index d07b4e7..8f38f74 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1112,5 +1112,12 @@
 			<artifactId>protobuf-java-util</artifactId>
 			<version>3.12.2</version>
 		</dependency>
+
+		<dependency>
+			<groupId>org.apache.maven.plugins</groupId>
+			<artifactId>maven-assembly-plugin</artifactId>
+			<version>3.3.0</version>
+		</dependency>
+
 	</dependencies>
 </project>