You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/03/23 12:23:24 UTC

[camel-karaf] 02/02: Modify skeleton of Catalog

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git

commit 92fb9fbd68d741d6a420fc3658c35fc05076cce7
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Mar 23 13:22:45 2020 +0100

    Modify skeleton of Catalog
---
 catalog/camel-catalog-provider-karaf/pom.xml | 14 --------------
 catalog/pom.xml                              | 23 +++++++++++++++++++++++
 2 files changed, 23 insertions(+), 14 deletions(-)

diff --git a/catalog/camel-catalog-provider-karaf/pom.xml b/catalog/camel-catalog-provider-karaf/pom.xml
index 2987f26..0e16e5b 100644
--- a/catalog/camel-catalog-provider-karaf/pom.xml
+++ b/catalog/camel-catalog-provider-karaf/pom.xml
@@ -77,20 +77,6 @@
                 <artifactId>camel-bundle-plugin</artifactId>
             </plugin>
 
-            <!-- generate and include all components in the catalog -->
-            <plugin>
-                <groupId>org.apache.camel</groupId>
-                <artifactId>camel-package-maven-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <goals>
-                            <goal>prepare-catalog-karaf</goal>
-                        </goals>
-                        <phase>process-resources</phase>
-                    </execution>
-                </executions>
-            </plugin>
-
         </plugins>
 
     </build>
diff --git a/catalog/pom.xml b/catalog/pom.xml
index af81b91..3f51fb5 100644
--- a/catalog/pom.xml
+++ b/catalog/pom.xml
@@ -38,4 +38,27 @@
         <module>camel-catalog-provider-karaf</module>
     </modules>
 
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.camel</groupId>
+                <artifactId>camel-bundle-plugin</artifactId>
+                <version>${project.version}</version>
+                <configuration>
+                    <instructions>
+                    </instructions>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>bundle-manifest</id>
+                        <phase>prepare-package</phase>
+                        <goals>
+                            <goal>manifest</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
 </project>