You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by de...@apache.org on 2018/05/08 12:49:11 UTC

[myfaces] 11/14: Add maven-jar-plugin config to generate Implementation entries in the jar file manifest. Fix the since it will appear in manifest

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

deki pushed a commit to branch 1_1_4
in repository https://gitbox.apache.org/repos/asf/myfaces.git

commit 32486e0017ce1eeabd7ed385320df2645a6e7b51
Author: Wendy Smoak <ws...@apache.org>
AuthorDate: Tue Sep 5 03:44:12 2006 +0000

    Add maven-jar-plugin config to generate Implementation entries in the jar file manifest.
    Fix the <name> since it will appear in manifest
---
 api/pom.xml  |  2 +-
 impl/pom.xml |  2 +-
 pom.xml      | 16 ++++++++++++++++
 3 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/api/pom.xml b/api/pom.xml
index 9103e26..15c6dfa 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -7,7 +7,7 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.myfaces.core</groupId>
   <artifactId>myfaces-api</artifactId>
-  <name>API</name>
+  <name>MyFaces API</name>
   <description>
     The MyFaces API Subproject provides a full set of the API interfaces and classes
     defined in JSR-127 (see also http://www.jcp.org/en/jsr/detail?id=127).
diff --git a/impl/pom.xml b/impl/pom.xml
index dc51504..936dcec 100644
--- a/impl/pom.xml
+++ b/impl/pom.xml
@@ -8,7 +8,7 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.myfaces.core</groupId>
   <artifactId>myfaces-impl</artifactId>
-  <name>Impl</name>
+  <name>MyFaces Implementation</name>
   <description>This is the MyFaces Impl Subproject Description [INSERT MORE STUFF HERE]</description>
   <url>http://myfaces.apache.org</url>
   <scm>
diff --git a/pom.xml b/pom.xml
index 47332f4..e650839 100644
--- a/pom.xml
+++ b/pom.xml
@@ -59,4 +59,20 @@
       <url>scpexe://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
     </snapshotRepository>
   </distributionManagement>
+    <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <artifactId>maven-jar-plugin</artifactId>
+                    <configuration>
+                        <archive>
+                            <manifest>
+                                <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+                            </manifest>
+                        </archive>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
 </project>
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
deki@apache.org.