This is an automated email from the ASF dual-hosted git repository. heneveld pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/brooklyn-dist.git
commit 7321c1520043533f15f4673eec17da1cb023c127 Author: Alex Heneveld <[email protected]> AuthorDate: Tue Jan 15 18:38:15 2019 +0000 new version of cxf seems to require this setting feels like it _shouldn't_ be needed, but we get a glassfish class not found error otherwise, and this fixes it by pointing at cxf instead --- karaf/apache-brooklyn/src/main/resources/etc/system.properties | 3 +++ 1 file changed, 3 insertions(+) diff --git a/karaf/apache-brooklyn/src/main/resources/etc/system.properties b/karaf/apache-brooklyn/src/main/resources/etc/system.properties index a95f167..ff910ae 100644 --- a/karaf/apache-brooklyn/src/main/resources/etc/system.properties +++ b/karaf/apache-brooklyn/src/main/resources/etc/system.properties @@ -131,3 +131,6 @@ karaf.secured.services = (&(osgi.command.scope=*)(osgi.command.function=*)) # You can specify the location of the lock file using the # karaf.lock.dir=/path/to/the/directory/containing/the/lock # + +# Needed to get CXF to run as the Jersey provider +javax.ws.rs.ext.RuntimeDelegate = org.apache.cxf.jaxrs.impl.RuntimeDelegateImpl
