Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoberto E. Escobar2014-06-12 02:11:13 +0000
committerRyan T. Baldwin2014-06-12 02:11:13 +0000
commit758a6e1bf246b428894e4442e758b6a9b0f48f0f (patch)
tree185c7efc6b67f12625ad1b5b845dbc8c16a4b675 /plugins/org.eclipse.osee.jaxrs.server.test/pom.xml
parent349ac84535a4f51fc0e71a57a5ece2929beaa6ad (diff)
downloadorg.eclipse.osee-758a6e1bf246b428894e4442e758b6a9b0f48f0f.tar.gz
org.eclipse.osee-758a6e1bf246b428894e4442e758b6a9b0f48f0f.tar.xz
org.eclipse.osee-758a6e1bf246b428894e4442e758b6a9b0f48f0f.zip
feature[ats_ATS55930]: Upgrade JAX-RS to 2.0 API using Apache CXF
Change JAX-RS endpoints to comply with 2.0 API Change JAX-RS clients to use JAX-RS 2.0 Client API instead of using Jersey's client implementation. Remove all Jersey dependencies. Integrate Apache CXF with OSEE JAX-RS Change-Id: I866dff8516b91dbcde07b07819cf0bbc89b5d293
Diffstat (limited to 'plugins/org.eclipse.osee.jaxrs.server.test/pom.xml')
-rw-r--r--plugins/org.eclipse.osee.jaxrs.server.test/pom.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.jaxrs.server.test/pom.xml b/plugins/org.eclipse.osee.jaxrs.server.test/pom.xml
index 8646be265e9..16fb0065077 100644
--- a/plugins/org.eclipse.osee.jaxrs.server.test/pom.xml
+++ b/plugins/org.eclipse.osee.jaxrs.server.test/pom.xml
@@ -21,8 +21,11 @@
<artifactId>tycho-surefire-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
- <testSuite>org.eclipse.osee.jaxrs.server.test</testSuite>
- <testClass>org.eclipse.osee.jaxrs.server.test.JaxRsServerTestSuite</testClass>
+ <testSuite>org.eclipse.osee.jaxrs.server.test</testSuite>
+ <testClass>org.eclipse.osee.jaxrs.server.test.JaxRsServerTestSuite</testClass>
+ <systemProperties combine.children="append">
+ <javax.ws.rs.ext.RuntimeDelegate>org.apache.cxf.jaxrs.impl.RuntimeDelegateImpl</javax.ws.rs.ext.RuntimeDelegate>
+ </systemProperties>
</configuration>
</plugin>
</plugins>

Back to the top