You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by bl...@apache.org on 2006/11/08 15:58:57 UTC

svn commit: r472510 - /incubator/cxf/trunk/distribution/pom.xml

Author: blin
Date: Wed Nov  8 06:58:56 2006
New Revision: 472510

URL: http://svn.apache.org/viewvc?view=rev&rev=472510
Log:
fixed -Peverything profile failure. Previous manifest customization seems to be OK if we build from distribution module, but failed if we build using -Peverything profile. Anyone has clue about this?

Modified:
    incubator/cxf/trunk/distribution/pom.xml

Modified: incubator/cxf/trunk/distribution/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/pom.xml?view=diff&rev=472510&r1=472509&r2=472510
==============================================================================
--- incubator/cxf/trunk/distribution/pom.xml (original)
+++ incubator/cxf/trunk/distribution/pom.xml Wed Nov  8 06:58:56 2006
@@ -276,9 +276,14 @@
                     <archive>
                         <manifest>
                             <addClasspath>true</addClasspath>
-			    <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
-			    <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
                         </manifest> 
+			<manifestEntries>
+			    <Extension-Name>${pom.artifactId}</Extension-Name>
+			    <Specification-Vendor>${pom.organization.name}</Specification-Vendor>
+			    <Implementation-Vendor>${pom.organization.name}</Implementation-Vendor>
+			    <Implementation-Title>${pom.name}</Implementation-Title>
+			    <Implementation-Version>${pom.version}</Implementation-Version>
+			</manifestEntries>
                     </archive>
                 </configuration>
             </plugin>