You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by so...@apache.org on 2008/02/27 22:47:37 UTC

svn commit: r631738 - /myfaces/portlet-bridge/core/trunk_2.0.x/pom.xml

Author: sobryan
Date: Wed Feb 27 13:47:37 2008
New Revision: 631738

URL: http://svn.apache.org/viewvc?rev=631738&view=rev
Log:
PORTLETBRIDGE-28: Generated JARS do not create the correct manifest entries

Modified:
    myfaces/portlet-bridge/core/trunk_2.0.x/pom.xml

Modified: myfaces/portlet-bridge/core/trunk_2.0.x/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/core/trunk_2.0.x/pom.xml?rev=631738&r1=631737&r2=631738&view=diff
==============================================================================
--- myfaces/portlet-bridge/core/trunk_2.0.x/pom.xml (original)
+++ myfaces/portlet-bridge/core/trunk_2.0.x/pom.xml Wed Feb 27 13:47:37 2008
@@ -161,6 +161,23 @@
       </dependencies>
   </dependencyManagement>
   
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Specification-Title>${specName}</Specification-Title>
+              <Specification-Version>${specVersion}</Specification-Version>
+              <Specification-Vendor>Java Community (JSR-301)</Specification-Vendor>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  
   <reporting>
     <plugins>
       <plugin>