Repository: cxf Updated Branches: refs/heads/master ba0573f20 -> da8ed20b1
[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/da8ed20b Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/da8ed20b Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/da8ed20b Branch: refs/heads/master Commit: da8ed20b1b9ade37a35ab6e62b7ae3be90b09b35 Parents: ba0573f Author: Sergey Beryozkin <[email protected]> Authored: Mon Apr 17 17:26:27 2017 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Mon Apr 17 17:26:27 2017 +0100 ---------------------------------------------------------------------- integration/spring-boot/autoconfigure/pom.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/da8ed20b/integration/spring-boot/autoconfigure/pom.xml ---------------------------------------------------------------------- diff --git a/integration/spring-boot/autoconfigure/pom.xml b/integration/spring-boot/autoconfigure/pom.xml index 89fea7b..0a44f7c 100644 --- a/integration/spring-boot/autoconfigure/pom.xml +++ b/integration/spring-boot/autoconfigure/pom.xml @@ -30,6 +30,21 @@ <version>3.2.0-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>
