Henri Leisma created FEDIZ-139:
----------------------------------
Summary: cxf-fediz plugin osgi export
Key: FEDIZ-139
URL: https://issues.apache.org/jira/browse/FEDIZ-139
Project: CXF-Fediz
Issue Type: Bug
Components: Plugin
Affects Versions: 1.2.1
Reporter: Henri Leisma
cxf-fediz plugin exports spring package instead of it's own cxf package
current export:
org.apache.cxf.fediz.spring.*
export should include:
org.apache.cxf.fediz.cxf.*
The issue is that currently it is not possible to refer to
FedizRedirectBindingFilter in a custom osgi module as instructed in
https://cxf.apache.org/fediz-cxf.html
{code}
<bean id="fedizFilter"
class="org.apache.cxf.fediz.cxf.plugin.FedizRedirectBindingFilter">
<property name="configFile" value="fediz_config.xml"/>
</bean>
{code}
Can be reproduced with current master:
https://github.com/apache/cxf-fediz/blob/master/plugins/cxf/pom.xml
{code}
<Export-Package>
org.apache.cxf.fediz.spring.*;version="${project.version}"
</Export-Package>
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)