Repository: cxf Updated Branches: refs/heads/3.1.x-fixes bf6ef93b0 -> 7d70ce864
[CXF-7328] Making sure the generated metadata are included in the SpringBoot autoconfigure module, patch from Dennis Kieselhorst applied, This closes #260 Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/7d70ce86 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/7d70ce86 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/7d70ce86 Branch: refs/heads/3.1.x-fixes Commit: 7d70ce864666b3b8b9f1a1f59ba0d71f023d8d26 Parents: bf6ef93 Author: Sergey Beryozkin <[email protected]> Authored: Mon Apr 17 17:26:27 2017 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Mon Apr 17 17:28:17 2017 +0100 ---------------------------------------------------------------------- integration/spring-boot/autoconfigure/pom.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/7d70ce86/integration/spring-boot/autoconfigure/pom.xml ---------------------------------------------------------------------- diff --git a/integration/spring-boot/autoconfigure/pom.xml b/integration/spring-boot/autoconfigure/pom.xml index 06d3629..bd8f51a 100644 --- a/integration/spring-boot/autoconfigure/pom.xml +++ b/integration/spring-boot/autoconfigure/pom.xml @@ -30,6 +30,21 @@ <version>3.1.12-SNAPSHOT</version> <relativePath>../../../parent/pom.xml</relativePath> </parent> + <build> + <plugins> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <configuration> + <instructions> + <Include-Resource> + {maven-resources},META-INF/=target/classes/META-INF/spring-configuration-metadata.json + </Include-Resource> + </instructions> + </configuration> + </plugin> + </plugins> + </build> <dependencies> <!-- Compile --> <dependency>
