added the maven tutorial distribution
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1505427 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/ipojo/runtime/distributions/maven-tutorial/pom.xml b/ipojo/runtime/distributions/maven-tutorial/pom.xml
new file mode 100644
index 0000000..85c1041
--- /dev/null
+++ b/ipojo/runtime/distributions/maven-tutorial/pom.xml
@@ -0,0 +1,103 @@
+<?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.
+ -->
+
+<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>
+
+ <parent>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>felix-parent</artifactId>
+ <version>2.1</version>
+ <relativePath>../../../../pom/pom.xml</relativePath>
+ </parent>
+
+
+ <packaging>pom</packaging>
+
+ <name>Apache Felix iPOJO - Distribution - Maven Tutorial</name>
+ <artifactId>org.apache.felix.ipojo.distribution.maventutorial</artifactId>
+ <version>1.10.2-SNAPSHOT</version>
+
+
+ <description>This project builds the iPOJO Maven tutorial package</description>
+
+
+ <build>
+ <plugins>
+ <!--
+ The build is configured to filter the skeleton and generate a distribution out of it.
+ -->
+
+ <plugin>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.6</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+ <phase>compile</phase>
+ <id>copy-skeleton</id>
+ <configuration>
+ <outputDirectory>${project.build.directory}/maven-tutorial</outputDirectory>
+ <delimiters>
+ <!-- we use a specific delimiter to avoid filtering internal properties -->
+ <delimiter>@</delimiter>
+ </delimiters>
+ <escapeString>\</escapeString>
+ <resources>
+ <resource>
+ <directory>src/main/skeleton</directory>
+ <filtering>true</filtering>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.4</version>
+ <configuration>
+ <attach>true</attach>
+ </configuration>
+ <executions>
+ <execution>
+ <id>build-distribution</id>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ <phase>package</phase>
+ <configuration>
+ <descriptors>
+ <descriptor>src/main/assembly/distribution.xml</descriptor>
+ </descriptors>
+
+ <appendAssemblyId>false</appendAssemblyId>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file
diff --git a/ipojo/runtime/distributions/maven-tutorial/src/main/appended-resources/META-INF/DEPENDENCIES b/ipojo/runtime/distributions/maven-tutorial/src/main/appended-resources/META-INF/DEPENDENCIES
new file mode 100644
index 0000000..f02b82d
--- /dev/null
+++ b/ipojo/runtime/distributions/maven-tutorial/src/main/appended-resources/META-INF/DEPENDENCIES
@@ -0,0 +1,27 @@
+
+I. Included Third-Party Software
+
+This product includes software developed at
+The OSGi Alliance (http://www.osgi.org/).
+Copyright (c) OSGi Alliance (2000, 2012).
+Licensed under the Apache License 2.0.
+
+This product includes software from http://kxml.sourceforge.net.
+Copyright (c) 2002,2003, Stefan Haustein, Oberhausen, Rhld., Germany.
+Licensed under BSD License.
+
+II. Used Third-Party Software
+
+This product uses software developed at
+The OSGi Alliance (http://www.osgi.org/).
+Copyright (c) OSGi Alliance (2000, 2012).
+Licensed under the Apache License 2.0.
+
+This product uses software developed at
+The Codehaus (http://www.codehaus.org)
+Licensed under the Apache License 2.0.
+
+III. License Summary
+
+- Apache License 2.0
+- BSD License
diff --git a/ipojo/runtime/distributions/maven-tutorial/src/main/appended-resources/META-INF/NOTICE b/ipojo/runtime/distributions/maven-tutorial/src/main/appended-resources/META-INF/NOTICE
new file mode 100644
index 0000000..727b0df
--- /dev/null
+++ b/ipojo/runtime/distributions/maven-tutorial/src/main/appended-resources/META-INF/NOTICE
@@ -0,0 +1,8 @@
+This product includes software developed at
+The OSGi Alliance (http://www.osgi.org/).
+Copyright (c) OSGi Alliance (2000, 2012).
+Licensed under the Apache License 2.0.
+
+This product includes software from http://kxml.sourceforge.net.
+Copyright (c) 2002,2003, Stefan Haustein, Oberhausen, Rhld., Germany.
+Licensed under BSD License.
\ No newline at end of file
diff --git a/ipojo/runtime/distributions/maven-tutorial/src/main/assembly/distribution.xml b/ipojo/runtime/distributions/maven-tutorial/src/main/assembly/distribution.xml
new file mode 100644
index 0000000..8f2d4c3
--- /dev/null
+++ b/ipojo/runtime/distributions/maven-tutorial/src/main/assembly/distribution.xml
@@ -0,0 +1,45 @@
+<!--
+ ~ 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.
+ -->
+
+<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
+
+ <id>distribution</id>
+
+ <formats>
+ <format>zip</format>
+ </formats>
+
+ <includeBaseDirectory>true</includeBaseDirectory>
+
+
+ <fileSets>
+ <fileSet>
+ <directory>${project.build.directory}/maven-shared-archive-resources/META-INF</directory>
+ <outputDirectory/>
+ </fileSet>
+
+ <fileSet>
+ <directory>${project.build.directory}/maven-tutorial</directory>
+ <outputDirectory/>
+ </fileSet>
+ </fileSets>
+
+
+</assembly>
\ No newline at end of file
diff --git a/ipojo/runtime/distributions/quickstart/pom.xml b/ipojo/runtime/distributions/quickstart/pom.xml
index 5f855bd..364015b 100644
--- a/ipojo/runtime/distributions/quickstart/pom.xml
+++ b/ipojo/runtime/distributions/quickstart/pom.xml
@@ -27,7 +27,7 @@
<groupId>org.apache.felix</groupId>
<artifactId>felix-parent</artifactId>
<version>2.1</version>
- <relativePath>../../../pom/pom.xml</relativePath>
+ <relativePath>../../../../pom/pom.xml</relativePath>
</parent>
@@ -94,7 +94,7 @@
<configuration>
<includeGroupIds>org.apache.felix</includeGroupIds>
<includeTypes>zip</includeTypes>
- <includeArtifactsIds>org.apache.felix.main.distribution</includeArtifactsIds>
+ <includeArtifactIds>org.apache.felix.main.distribution</includeArtifactIds>
<outputDirectory>${felix.destination}</outputDirectory>
</configuration>
</execution>