Added a projects building the different distribution (tutorials) used on the iPOJO web site.

- added quickstart
- add handler tutorial

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1470277 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/ipojo/distributions/handler-tutorial/Log-Handler-Consumer/pom.xml b/ipojo/distributions/handler-tutorial/Log-Handler-Consumer/pom.xml
new file mode 100755
index 0000000..ac19fda
--- /dev/null
+++ b/ipojo/distributions/handler-tutorial/Log-Handler-Consumer/pom.xml
@@ -0,0 +1,57 @@
+<project>

+    <modelVersion>4.0.0</modelVersion>

+

+    <parent>

+        <groupId>org.apache.felix</groupId>

+        <artifactId>ipojo-handler-tutorial</artifactId>

+        <version>1.9.0-SNAPSHOT</version>

+    </parent>

+

+    <packaging>bundle</packaging>

+    <name>iPOJO Log Handler Consumer</name>

+    <artifactId>org.apache.felix.ipojo.log.consumer</artifactId>

+    <description>A bundle using the log handler</description>

+

+    <dependencies>

+        <dependency>

+            <groupId>${project.groupId}</groupId>

+            <artifactId>org.apache.felix.ipojo.log.foo</artifactId>

+            <version>${project.version}</version>

+            <scope>provided</scope>

+        </dependency>

+        <dependency>

+            <groupId>${project.groupId}</groupId>

+            <artifactId>org.apache.felix.ipojo.log.handler</artifactId>

+            <version>${project.version}</version>

+            <scope>provided</scope>

+        </dependency>

+    </dependencies>

+

+    <build>

+        <plugins>

+            <plugin>

+                <groupId>org.apache.felix</groupId>

+                <artifactId>maven-bundle-plugin</artifactId>

+                <extensions>true</extensions>

+                <configuration>

+                    <instructions>

+                        <Private-Package>

+                            org.apache.felix.ipojo.log.handler.example

+                        </Private-Package>

+                    </instructions>

+                </configuration>

+            </plugin>

+            <plugin>

+                <groupId>org.apache.felix</groupId>

+                <artifactId>maven-ipojo-plugin</artifactId>

+                <executions>

+                    <execution>

+                        <goals>

+                            <goal>ipojo-bundle</goal>

+                        </goals>

+                    </execution>

+                </executions>

+            </plugin>

+        </plugins>

+    </build>

+</project>