Repository: cxf Updated Branches: refs/heads/3.0.x-fixes 28244858c -> cd0c70d49
[CXF-6143] include public-suffix-list.txt Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/cd0c70d4 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/cd0c70d4 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/cd0c70d4 Branch: refs/heads/3.0.x-fixes Commit: cd0c70d4982280aed6cfcfa4ccfc756305fbe1de Parents: 2824485 Author: Akitoshi Yoshida <[email protected]> Authored: Tue Jan 20 07:20:42 2015 +0100 Committer: Akitoshi Yoshida <[email protected]> Committed: Tue Jan 20 08:24:20 2015 +0100 ---------------------------------------------------------------------- rt/transports/http/pom.xml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/cd0c70d4/rt/transports/http/pom.xml ---------------------------------------------------------------------- diff --git a/rt/transports/http/pom.xml b/rt/transports/http/pom.xml index 455ca2f..2d955b7 100644 --- a/rt/transports/http/pom.xml +++ b/rt/transports/http/pom.xml @@ -152,6 +152,42 @@ </configuration> </plugin> <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <extensions>true</extensions> + <executions> + <execution> + <id>versions</id> + <phase>validate</phase> + <goals> + <goal>cleanVersions</goal> + </goals> + <configuration> + <versions> + <cxf.osgi.version.clean>${project.version}</cxf.osgi.version.clean> + </versions> + </configuration> + </execution> + </executions> + <configuration> + <instructions> + <Bundle-SymbolicName>${cxf.osgi.symbolic.name}</Bundle-SymbolicName> + <Include-Resource> + {maven-resources}, + mozilla/public-suffix-list.txt=${basedir}/target/classes/mozilla/public-suffix-list.txt + </Include-Resource> + <Import-Package> + ${cxf.osgi.import}, + * + </Import-Package> + <Export-Service> + ${cxf.export.service} + </Export-Service> + <Bundle-Activator>${cxf.bundle.activator}</Bundle-Activator> + </instructions> + </configuration> + </plugin> + <plugin> <groupId>com.googlecode.maven-download-plugin</groupId> <artifactId>download-maven-plugin</artifactId> <version>1.2.0</version>
