You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2011/12/15 19:00:29 UTC

svn commit: r1214897 - in /karaf/trunk/archetypes: ./ blueprint/ blueprint/src/ blueprint/src/main/ blueprint/src/main/resources/ blueprint/src/main/resources/META-INF/ blueprint/src/main/resources/META-INF/maven/ blueprint/src/main/resources/archetype...

Author: jbonofre
Date: Thu Dec 15 18:00:28 2011
New Revision: 1214897

URL: http://svn.apache.org/viewvc?rev=1214897&view=rev
Log:
[KARAF-1109] Add bundle and blueprint archetypes (preparing a donation to felix and aries)

Added:
    karaf/trunk/archetypes/blueprint/
    karaf/trunk/archetypes/blueprint/NOTICE
      - copied, changed from r1214880, karaf/trunk/archetypes/command/src/main/resources/archetype-resources/NOTICE
    karaf/trunk/archetypes/blueprint/pom.xml
      - copied, changed from r1214880, karaf/trunk/archetypes/pom.xml
    karaf/trunk/archetypes/blueprint/src/
    karaf/trunk/archetypes/blueprint/src/main/
    karaf/trunk/archetypes/blueprint/src/main/resources/
    karaf/trunk/archetypes/blueprint/src/main/resources/META-INF/
    karaf/trunk/archetypes/blueprint/src/main/resources/META-INF/maven/
    karaf/trunk/archetypes/blueprint/src/main/resources/META-INF/maven/archetype-metadata.xml
    karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/
    karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/pom.xml
    karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/
    karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/
    karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/java/
    karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/java/MyService.java
    karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/java/MyServiceImpl.java
    karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/resources/
    karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/resources/OSGI-INF/
    karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/resources/OSGI-INF/blueprint/
    karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/resources/OSGI-INF/blueprint/my-service.xml
    karaf/trunk/archetypes/bundle/
    karaf/trunk/archetypes/bundle/NOTICE
      - copied, changed from r1214880, karaf/trunk/archetypes/command/src/main/resources/archetype-resources/NOTICE
    karaf/trunk/archetypes/bundle/pom.xml
      - copied, changed from r1214880, karaf/trunk/archetypes/pom.xml
    karaf/trunk/archetypes/bundle/src/
    karaf/trunk/archetypes/bundle/src/main/
    karaf/trunk/archetypes/bundle/src/main/resources/
    karaf/trunk/archetypes/bundle/src/main/resources/META-INF/
    karaf/trunk/archetypes/bundle/src/main/resources/META-INF/maven/
    karaf/trunk/archetypes/bundle/src/main/resources/META-INF/maven/archetype-metadata.xml
    karaf/trunk/archetypes/bundle/src/main/resources/archetype-resources/
    karaf/trunk/archetypes/bundle/src/main/resources/archetype-resources/pom.xml
    karaf/trunk/archetypes/bundle/src/main/resources/archetype-resources/src/
    karaf/trunk/archetypes/bundle/src/main/resources/archetype-resources/src/main/
    karaf/trunk/archetypes/bundle/src/main/resources/archetype-resources/src/main/java/
    karaf/trunk/archetypes/bundle/src/main/resources/archetype-resources/src/main/java/Activator.java
Removed:
    karaf/trunk/archetypes/command/src/main/resources/archetype-resources/NOTICE
Modified:
    karaf/trunk/archetypes/command/src/main/resources/META-INF/maven/archetype-metadata.xml
    karaf/trunk/archetypes/pom.xml

Copied: karaf/trunk/archetypes/blueprint/NOTICE (from r1214880, karaf/trunk/archetypes/command/src/main/resources/archetype-resources/NOTICE)
URL: http://svn.apache.org/viewvc/karaf/trunk/archetypes/blueprint/NOTICE?p2=karaf/trunk/archetypes/blueprint/NOTICE&p1=karaf/trunk/archetypes/command/src/main/resources/archetype-resources/NOTICE&r1=1214880&r2=1214897&rev=1214897&view=diff
==============================================================================
    (empty)

Copied: karaf/trunk/archetypes/blueprint/pom.xml (from r1214880, karaf/trunk/archetypes/pom.xml)
URL: http://svn.apache.org/viewvc/karaf/trunk/archetypes/blueprint/pom.xml?p2=karaf/trunk/archetypes/blueprint/pom.xml&p1=karaf/trunk/archetypes/pom.xml&r1=1214880&r2=1214897&rev=1214897&view=diff
==============================================================================
--- karaf/trunk/archetypes/pom.xml (original)
+++ karaf/trunk/archetypes/blueprint/pom.xml Thu Dec 15 18:00:28 2011
@@ -18,47 +18,39 @@
         See the License for the specific language governing permissions and
         limitations under the License.
     -->
-    
+
     <modelVersion>4.0.0</modelVersion>
-    
+
     <parent>
         <groupId>org.apache.karaf</groupId>
-        <artifactId>karaf</artifactId>
+        <artifactId>archetypes</artifactId>
         <version>3.0.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
-    <artifactId>archetypes</artifactId>
+    <groupId>org.apache.karaf.archetypes</groupId>
+    <artifactId>karaf-blueprint-archetype</artifactId>
+    <packaging>maven-archetype</packaging>
+    <name>Apache Karaf :: Archetypes :: Blueprint Archetype</name>
+
+    <build>
 
-    <name>Apache Karaf :: Archetypes</name>
-    <packaging>pom</packaging>
+        <extensions>
+            <extension>
+                <groupId>org.apache.maven.archetype</groupId>
+                <artifactId>archetype-packaging</artifactId>
+                <version>2.2</version>
+            </extension>
+        </extensions>
 
-    <modules>
-        <module>assembly</module>
-        <module>command</module>
-        <module>feature</module>
-        <module>kar</module>
-    </modules>
-
-    <profiles>
-        <profile>
-            <id>maven-3</id>
-            <activation>
-                <file>
-                    <!--  This employs that the basedir expression is only recognized by Maven 3.x (see MNG-2363) -->
-                    <exists>${basedir}</exists>
-                </file>
-            </activation>
-        </profile>
-        <profile>
-            <id>maven-2</id>
-            <activation>
-                <activeByDefault>true</activeByDefault>
-            </activation>
-            <modules>
-                <module>itests</module>
-            </modules>
-        </profile>
-    </profiles>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-archetype-plugin</artifactId>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
 
-</project>
+</project>
\ No newline at end of file

Added: karaf/trunk/archetypes/blueprint/src/main/resources/META-INF/maven/archetype-metadata.xml
URL: http://svn.apache.org/viewvc/karaf/trunk/archetypes/blueprint/src/main/resources/META-INF/maven/archetype-metadata.xml?rev=1214897&view=auto
==============================================================================
--- karaf/trunk/archetypes/blueprint/src/main/resources/META-INF/maven/archetype-metadata.xml (added)
+++ karaf/trunk/archetypes/blueprint/src/main/resources/META-INF/maven/archetype-metadata.xml Thu Dec 15 18:00:28 2011
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<archetype-descriptor xsi:schemaLocation="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.0 http://maven.apache.org/xsd/archetype-descriptor-1.0.0.xsd"
+                      xmlns="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.0"
+                      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+                      name="org.apache.karaf.archetypes.bundle">
+
+    <fileSets>
+        <fileSet filtered="true" packaged="true" encoding="UTF-8">
+            <directory>src/main/java</directory>
+            <includes>
+                <include>**/*.java</include>
+            </includes>
+        </fileSet>
+        <fileSet filtered="true" encoding="UTF-8">
+            <directory>src/main/resources</directory>
+            <includes>
+                <include>**/*.xml</include>
+            </includes>
+        </fileSet>
+    </fileSets>
+
+</archetype-descriptor>
\ No newline at end of file

Added: karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/pom.xml?rev=1214897&view=auto
==============================================================================
--- karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/pom.xml (added)
+++ karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/pom.xml Thu Dec 15 18:00:28 2011
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <groupId>${groupId}</groupId>
+    <artifactId>${artifactId}</artifactId>
+    <version>${version}</version>
+    <packaging>bundle</packaging>
+
+    <name>${artifactId} Blueprint Bundle</name>
+    <description>
+        ${artifactId} OSGi blueprint bundle project.
+    </description>
+
+    <properties>
+        <maven-bundle-plugin.version>2.3.6</maven-bundle-plugin.version>
+        <osgi.version>4.3.0</osgi.version>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.core</artifactId>
+            <version>${osgi.version}</version>
+            <scope>provided</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>${maven-bundle-plugin.version}</version>
+                <extensions>true</extensions>
+                <configuration>
+                    <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+                    <Bundle-Version>${project.version}</Bundle-Version>
+                    <Export-Package>
+                        ${package}*;version=${project.version}
+                    </Export-Package>
+                    <Import-Package>
+                        *
+                    </Import-Package>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>
\ No newline at end of file

Added: karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/java/MyService.java
URL: http://svn.apache.org/viewvc/karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/java/MyService.java?rev=1214897&view=auto
==============================================================================
--- karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/java/MyService.java (added)
+++ karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/java/MyService.java Thu Dec 15 18:00:28 2011
@@ -0,0 +1,7 @@
+package ${package};
+
+public interface MyService {
+    
+    public String echo(String message);
+    
+}
\ No newline at end of file

Added: karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/java/MyServiceImpl.java
URL: http://svn.apache.org/viewvc/karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/java/MyServiceImpl.java?rev=1214897&view=auto
==============================================================================
--- karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/java/MyServiceImpl.java (added)
+++ karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/java/MyServiceImpl.java Thu Dec 15 18:00:28 2011
@@ -0,0 +1,9 @@
+package ${package};
+
+public class MyServiceImpl implements MyService {
+    
+    public String echo(String message) {
+        return "Echo processed: " + message;
+    }
+    
+}
\ No newline at end of file

Added: karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/resources/OSGI-INF/blueprint/my-service.xml
URL: http://svn.apache.org/viewvc/karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/resources/OSGI-INF/blueprint/my-service.xml?rev=1214897&view=auto
==============================================================================
--- karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/resources/OSGI-INF/blueprint/my-service.xml (added)
+++ karaf/trunk/archetypes/blueprint/src/main/resources/archetype-resources/src/main/resources/OSGI-INF/blueprint/my-service.xml Thu Dec 15 18:00:28 2011
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" default-activation="lazy">
+
+    <bean id="serviceBean" class="${package}.MyServiceImpl"/>
+
+    <service ref="serviceBean" interface="${package}.MyService"/>
+
+</blueprint>
\ No newline at end of file

Copied: karaf/trunk/archetypes/bundle/NOTICE (from r1214880, karaf/trunk/archetypes/command/src/main/resources/archetype-resources/NOTICE)
URL: http://svn.apache.org/viewvc/karaf/trunk/archetypes/bundle/NOTICE?p2=karaf/trunk/archetypes/bundle/NOTICE&p1=karaf/trunk/archetypes/command/src/main/resources/archetype-resources/NOTICE&r1=1214880&r2=1214897&rev=1214897&view=diff
==============================================================================
    (empty)

Copied: karaf/trunk/archetypes/bundle/pom.xml (from r1214880, karaf/trunk/archetypes/pom.xml)
URL: http://svn.apache.org/viewvc/karaf/trunk/archetypes/bundle/pom.xml?p2=karaf/trunk/archetypes/bundle/pom.xml&p1=karaf/trunk/archetypes/pom.xml&r1=1214880&r2=1214897&rev=1214897&view=diff
==============================================================================
--- karaf/trunk/archetypes/pom.xml (original)
+++ karaf/trunk/archetypes/bundle/pom.xml Thu Dec 15 18:00:28 2011
@@ -18,47 +18,39 @@
         See the License for the specific language governing permissions and
         limitations under the License.
     -->
-    
+
     <modelVersion>4.0.0</modelVersion>
-    
+
     <parent>
         <groupId>org.apache.karaf</groupId>
-        <artifactId>karaf</artifactId>
+        <artifactId>archetypes</artifactId>
         <version>3.0.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
-    <artifactId>archetypes</artifactId>
+    <groupId>org.apache.karaf.archetypes</groupId>
+    <artifactId>karaf-bundle-archetype</artifactId>
+    <packaging>maven-archetype</packaging>
+    <name>Apache Karaf :: Archetypes :: Bundle Archetype</name>
+
+    <build>
 
-    <name>Apache Karaf :: Archetypes</name>
-    <packaging>pom</packaging>
+        <extensions>
+            <extension>
+                <groupId>org.apache.maven.archetype</groupId>
+                <artifactId>archetype-packaging</artifactId>
+                <version>2.2</version>
+            </extension>
+        </extensions>
 
-    <modules>
-        <module>assembly</module>
-        <module>command</module>
-        <module>feature</module>
-        <module>kar</module>
-    </modules>
-
-    <profiles>
-        <profile>
-            <id>maven-3</id>
-            <activation>
-                <file>
-                    <!--  This employs that the basedir expression is only recognized by Maven 3.x (see MNG-2363) -->
-                    <exists>${basedir}</exists>
-                </file>
-            </activation>
-        </profile>
-        <profile>
-            <id>maven-2</id>
-            <activation>
-                <activeByDefault>true</activeByDefault>
-            </activation>
-            <modules>
-                <module>itests</module>
-            </modules>
-        </profile>
-    </profiles>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-archetype-plugin</artifactId>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
 
-</project>
+</project>
\ No newline at end of file

Added: karaf/trunk/archetypes/bundle/src/main/resources/META-INF/maven/archetype-metadata.xml
URL: http://svn.apache.org/viewvc/karaf/trunk/archetypes/bundle/src/main/resources/META-INF/maven/archetype-metadata.xml?rev=1214897&view=auto
==============================================================================
--- karaf/trunk/archetypes/bundle/src/main/resources/META-INF/maven/archetype-metadata.xml (added)
+++ karaf/trunk/archetypes/bundle/src/main/resources/META-INF/maven/archetype-metadata.xml Thu Dec 15 18:00:28 2011
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<archetype-descriptor xsi:schemaLocation="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.0 http://maven.apache.org/xsd/archetype-descriptor-1.0.0.xsd"
+                      xmlns="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.0"
+                      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+                      name="org.apache.karaf.archetypes.bundle">
+
+    <fileSets>
+        <fileSet filtered="true" packaged="true" encoding="UTF-8">
+            <directory>src/main/java</directory>
+            <includes>
+                <include>**/*.java</include>
+            </includes>
+        </fileSet>
+    </fileSets>
+
+</archetype-descriptor>
\ No newline at end of file

Added: karaf/trunk/archetypes/bundle/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/karaf/trunk/archetypes/bundle/src/main/resources/archetype-resources/pom.xml?rev=1214897&view=auto
==============================================================================
--- karaf/trunk/archetypes/bundle/src/main/resources/archetype-resources/pom.xml (added)
+++ karaf/trunk/archetypes/bundle/src/main/resources/archetype-resources/pom.xml Thu Dec 15 18:00:28 2011
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <groupId>${groupId}</groupId>
+    <artifactId>${artifactId}</artifactId>
+    <version>${version}</version>
+    <packaging>bundle</packaging>
+
+    <name>${artifactId} Bundle</name>
+    <description>
+        ${artifactId} OSGi bundle project.
+    </description>
+
+    <properties>
+        <maven-bundle-plugin.version>2.3.6</maven-bundle-plugin.version>
+        <osgi.version>4.3.0</osgi.version>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.core</artifactId>
+            <version>${osgi.version}</version>
+            <scope>provided</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>${maven-bundle-plugin.version}</version>
+                <extensions>true</extensions>
+                <configuration>
+                    <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+                    <Bundle-Version>${project.version}</Bundle-Version>
+                    <Bundle-Activator>${package}.Activator</Bundle-Activator>
+                    <Export-Package>
+                        ${package}*;version=${project.version}
+                    </Export-Package>
+                    <Import-Package>
+                        *
+                    </Import-Package>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>
\ No newline at end of file

Added: karaf/trunk/archetypes/bundle/src/main/resources/archetype-resources/src/main/java/Activator.java
URL: http://svn.apache.org/viewvc/karaf/trunk/archetypes/bundle/src/main/resources/archetype-resources/src/main/java/Activator.java?rev=1214897&view=auto
==============================================================================
--- karaf/trunk/archetypes/bundle/src/main/resources/archetype-resources/src/main/java/Activator.java (added)
+++ karaf/trunk/archetypes/bundle/src/main/resources/archetype-resources/src/main/java/Activator.java Thu Dec 15 18:00:28 2011
@@ -0,0 +1,16 @@
+package ${package};
+
+import org.osgi.framework.BundleActivator;
+import org.osgi.framework.BundleContext;
+
+public class Activator implements BundleActivator {
+
+    public void start(BundleContext context) {
+        System.out.println("Starting the bundle");
+    }
+
+    public void stop(BundleContext context) {
+        System.out.println("Stopping the bundle");
+    }
+
+}
\ No newline at end of file

Modified: karaf/trunk/archetypes/command/src/main/resources/META-INF/maven/archetype-metadata.xml
URL: http://svn.apache.org/viewvc/karaf/trunk/archetypes/command/src/main/resources/META-INF/maven/archetype-metadata.xml?rev=1214897&r1=1214896&r2=1214897&view=diff
==============================================================================
--- karaf/trunk/archetypes/command/src/main/resources/META-INF/maven/archetype-metadata.xml (original)
+++ karaf/trunk/archetypes/command/src/main/resources/META-INF/maven/archetype-metadata.xml Thu Dec 15 18:00:28 2011
@@ -52,12 +52,6 @@
         <include>pom.xml</include>
       </includes>
     </fileSet>
-    <fileSet encoding="UTF-8">
-      <directory></directory>
-      <includes>
-        <include>NOTICE</include>
-      </includes>
-    </fileSet>
   </fileSets>
 
 </archetype-descriptor>

Modified: karaf/trunk/archetypes/pom.xml
URL: http://svn.apache.org/viewvc/karaf/trunk/archetypes/pom.xml?rev=1214897&r1=1214896&r2=1214897&view=diff
==============================================================================
--- karaf/trunk/archetypes/pom.xml (original)
+++ karaf/trunk/archetypes/pom.xml Thu Dec 15 18:00:28 2011
@@ -38,6 +38,8 @@
         <module>command</module>
         <module>feature</module>
         <module>kar</module>
+        <module>bundle</module>
+        <module>blueprint</module>
     </modules>
 
     <profiles>