Repository: camel Updated Branches: refs/heads/jdk8-lambdas 5a60b6e0d -> b68c5c4a2
CAMEL-9764: Maven build - Fix Camel Salesforce Maven plugin. Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/b68c5c4a Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/b68c5c4a Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/b68c5c4a Branch: refs/heads/jdk8-lambdas Commit: b68c5c4a24a3f19a719914a89da18e0855bc20d0 Parents: 5a60b6e Author: Raúl Kripalani <ra...@apache.org> Authored: Sat Mar 26 00:13:07 2016 +0000 Committer: Raúl Kripalani <ra...@apache.org> Committed: Sat Mar 26 00:13:07 2016 +0000 ---------------------------------------------------------------------- .../camel-salesforce-maven-plugin/pom.xml | 23 ++++++++++++++++++++ 1 file changed, 23 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/b68c5c4a/components/camel-salesforce/camel-salesforce-maven-plugin/pom.xml ---------------------------------------------------------------------- diff --git a/components/camel-salesforce/camel-salesforce-maven-plugin/pom.xml b/components/camel-salesforce/camel-salesforce-maven-plugin/pom.xml index b28bbd5..6ca701c 100644 --- a/components/camel-salesforce/camel-salesforce-maven-plugin/pom.xml +++ b/components/camel-salesforce/camel-salesforce-maven-plugin/pom.xml @@ -147,6 +147,29 @@ <build> <plugins> + <!-- maven-jar-plugin config for Maven plugins. --> + <plugin> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <id>bundle-jar</id> + <phase>package</phase> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + <configuration> + <archive combine.self="override"> + <manifestFile/> + <manifest> + <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> + <addDefaultImplementationEntries>true</addDefaultImplementationEntries> + </manifest> + </archive> + </configuration> + </plugin> + <!-- Generate plugin help --> <plugin> <groupId>org.apache.maven.plugins</groupId>