You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by cs...@apache.org on 2013/09/09 10:06:23 UTC

svn commit: r1520985 - /cxf/trunk/services/xkms/xkms-client/pom.xml

Author: cschneider
Date: Mon Sep  9 08:06:22 2013
New Revision: 1520985

URL: http://svn.apache.org/r1520985
Log:
CXF-5259 Workaround for xkms bug in Eclipse RCP

Modified:
    cxf/trunk/services/xkms/xkms-client/pom.xml

Modified: cxf/trunk/services/xkms/xkms-client/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/services/xkms/xkms-client/pom.xml?rev=1520985&r1=1520984&r2=1520985&view=diff
==============================================================================
--- cxf/trunk/services/xkms/xkms-client/pom.xml (original)
+++ cxf/trunk/services/xkms/xkms-client/pom.xml Mon Sep  9 08:06:22 2013
@@ -49,6 +49,24 @@
                 </includes>
             </testResource>
         </testResources>
+        <plugins>
+           <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Import-Package>
+                            javax.xml.ws, <!-- To workaround issue with BindingProvider interface not visible -->
+                            *
+                        </Import-Package>
+                        <Export-Package>
+                            !*
+                        </Export-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
     </build>
 
     <dependencies>