You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ma...@apache.org on 2007/11/08 16:26:53 UTC

svn commit: r593195 - /myfaces/myfaces-master-pom/trunk/pom.xml

Author: manolito
Date: Thu Nov  8 07:26:52 2007
New Revision: 593195

URL: http://svn.apache.org/viewvc?rev=593195&view=rev
Log:
added maven-jar-plugin settings, so that implementation entries in jar manifest are automatically added

Modified:
    myfaces/myfaces-master-pom/trunk/pom.xml

Modified: myfaces/myfaces-master-pom/trunk/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/myfaces-master-pom/trunk/pom.xml?rev=593195&r1=593194&r2=593195&view=diff
==============================================================================
--- myfaces/myfaces-master-pom/trunk/pom.xml (original)
+++ myfaces/myfaces-master-pom/trunk/pom.xml Thu Nov  8 07:26:52 2007
@@ -526,6 +526,21 @@
                       <target>1.3</target>
                   </configuration>
               </plugin>
+              <plugin>
+                <!--
+                Starting with version 2.1, the maven-jar-plugin no longer creates the Specification and 
+                Implementation details in the manifest by default. If you want them you have to say so 
+                explicitly in your plugin configuration.
+                -->
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                  <archive>
+                    <manifest>
+                      <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+                    </manifest>
+                  </archive>
+                </configuration>
+              </plugin>
           </plugins>
         </pluginManagement>
     </build>