Author: rmannibucau
Date: Mon Oct 17 20:47:52 2011
New Revision: 1185368
URL: http://svn.apache.org/viewvc?rev=1185368&view=rev
Log:
adding cxf-bundle-patched to be able to override RuntimeDelegate
Added:
openejb/trunk/patched-libraries/cxf-bundle-patched/
openejb/trunk/patched-libraries/cxf-bundle-patched/pom.xml
Modified:
openejb/trunk/patched-libraries/jstl-patched/pom.xml
openejb/trunk/patched-libraries/openwebbeans-jsf-patched/pom.xml
openejb/trunk/patched-libraries/pom.xml
Added: openejb/trunk/patched-libraries/cxf-bundle-patched/pom.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/patched-libraries/cxf-bundle-patched/pom.xml?rev=1185368&view=auto
==============================================================================
--- openejb/trunk/patched-libraries/cxf-bundle-patched/pom.xml (added)
+++ openejb/trunk/patched-libraries/cxf-bundle-patched/pom.xml Mon Oct 17
20:47:52 2011
@@ -0,0 +1,70 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.openejb.patch</groupId>
+ <artifactId>openejb-patch-parent</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.apache.openejb.patch</groupId>
+ <artifactId>openejb-cxf-bundle</artifactId>
+ <version>2.4.3-SNAPSHOT</version>
+ <name>Apache OpenEJB Patch :: CXF Bundle</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-bundle</artifactId>
+ <version>2.4.3</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>2.3</version>
+ <executions>
+ <execution>
+ <id>patch</id>
+ <phase>process-classes</phase>
+ <goals>
+ <goal>unpack</goal>
+ </goals>
+ <configuration>
+
<excludes>META-INF/services/javax.ws.rs.ext.RuntimeDelegate</excludes>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-bundle</artifactId>
+ <overWrite>false</overWrite>
+
<outputDirectory>${project.build.outputDirectory}</outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Modified: openejb/trunk/patched-libraries/jstl-patched/pom.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/patched-libraries/jstl-patched/pom.xml?rev=1185368&r1=1185367&r2=1185368&view=diff
==============================================================================
--- openejb/trunk/patched-libraries/jstl-patched/pom.xml (original)
+++ openejb/trunk/patched-libraries/jstl-patched/pom.xml Mon Oct 17 20:47:52
2011
@@ -75,8 +75,4 @@
</plugin>
</plugins>
</build>
-
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
</project>
Modified: openejb/trunk/patched-libraries/openwebbeans-jsf-patched/pom.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/patched-libraries/openwebbeans-jsf-patched/pom.xml?rev=1185368&r1=1185367&r2=1185368&view=diff
==============================================================================
--- openejb/trunk/patched-libraries/openwebbeans-jsf-patched/pom.xml (original)
+++ openejb/trunk/patched-libraries/openwebbeans-jsf-patched/pom.xml Mon Oct 17
20:47:52 2011
@@ -67,8 +67,4 @@
</plugin>
</plugins>
</build>
-
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
</project>
Modified: openejb/trunk/patched-libraries/pom.xml
URL:
http://svn.apache.org/viewvc/openejb/trunk/patched-libraries/pom.xml?rev=1185368&r1=1185367&r2=1185368&view=diff
==============================================================================
--- openejb/trunk/patched-libraries/pom.xml (original)
+++ openejb/trunk/patched-libraries/pom.xml Mon Oct 17 20:47:52 2011
@@ -40,6 +40,7 @@
<module>bval-patched</module>
<module>jstl-patched</module>
<module>openwebbeans-jsf-patched</module>
+ <module>cxf-bundle-patched</module>
</modules>
<build>