You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by ta...@apache.org on 2021/09/19 14:41:52 UTC

[deltaspike] branch master updated: DELTASPIKE-1416: add maven-jar-plugin to to use the MANIFEST.MF

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

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


The following commit(s) were added to refs/heads/master by this push:
     new c16f377  DELTASPIKE-1416: add maven-jar-plugin to to use the MANIFEST.MF
     new d2919f0  Merge pull request #111 from Daniel-Dos/DELTASPIKE-1416
c16f377 is described below

commit c16f377f937f50ea34c0922f28655b8551ece2e7
Author: Daniel Dias <da...@gmail.com>
AuthorDate: Mon Sep 14 01:17:38 2020 -0300

    DELTASPIKE-1416: add maven-jar-plugin to to use the MANIFEST.MF
---
 deltaspike/core/impl/pom.xml | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/deltaspike/core/impl/pom.xml b/deltaspike/core/impl/pom.xml
index 552533f..df200e4 100644
--- a/deltaspike/core/impl/pom.xml
+++ b/deltaspike/core/impl/pom.xml
@@ -77,5 +77,18 @@
         </dependency>
     </dependencies>
 
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
+                    </archive>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>