Repository: camel
Updated Branches:
  refs/heads/master ed7302336 -> c7cb9d3f0


CAMEL-8326: Add execution phase to the maven-felix-plugin to allow to run the 
project using mvn camel:run and not mvn install camel:run, remove test scope of 
the dep camel-test-blueprint otherwise the deps needed by POJOsr weren't added 
to the classpath


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/c7cb9d3f
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/c7cb9d3f
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/c7cb9d3f

Branch: refs/heads/master
Commit: c7cb9d3f022c6fb6d685f2d83b3e4dacb725fd08
Parents: ed73023
Author: Charles Moulliard <cmoulli...@apache.org>
Authored: Tue Feb 10 15:10:17 2015 +0100
Committer: Charles Moulliard <cmoulli...@apache.org>
Committed: Tue Feb 10 15:10:17 2015 +0100

----------------------------------------------------------------------
 .../main/resources/archetype-resources/pom.xml  | 20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/c7cb9d3f/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git 
a/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/pom.xml
 
b/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/pom.xml
index 44f86aa..d8528af 100644
--- 
a/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/pom.xml
+++ 
b/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/pom.xml
@@ -24,8 +24,7 @@
   <packaging>bundle</packaging>
   <version>${version}</version>
 
-  <name>A Camel Blueprint Route</name>
-  <url>http://www.myorganization.org</url>
+  <name>Camel Blueprint Route</name>
 
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -56,22 +55,16 @@
       <version>${slf4j-version}</version>
     </dependency>
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>jcl-over-slf4j</artifactId>
-      <version>${slf4j-version}</version>
-    </dependency>
-    <dependency>
       <groupId>log4j</groupId>
       <artifactId>log4j</artifactId>
       <version>${log4j-version}</version>
     </dependency>
 
-    <!-- testing -->
+    <!-- Testing & Camel Plugin -->
     <dependency>
       <groupId>org.apache.camel</groupId>
       <artifactId>camel-test-blueprint</artifactId>
       <version>${camel-version}</version>
-      <scope>test</scope>
     </dependency>
   </dependencies>
 
@@ -103,6 +96,15 @@
         <artifactId>maven-bundle-plugin</artifactId>
         <version>${maven-bundle-plugin-version}</version>
         <extensions>true</extensions>
+        <executions>
+          <execution>
+           <id>bundle-manifest</id>
+           <phase>process-classes</phase>
+           <goals>
+               <goal>manifest</goal>
+           </goals>
+          </execution>
+        </executions>
         <configuration>
           <instructions>
             <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName>

Reply via email to