added jar bundle module

git-svn-id: https://svn.apache.org/repos/asf/incubator/jsecurity/trunk@758470 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/all/pom.xml b/all/pom.xml
new file mode 100644
index 0000000..bdad27d
--- /dev/null
+++ b/all/pom.xml
@@ -0,0 +1,109 @@
+<?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/maven-v4_0_0.xsd">
+
+    <parent>
+        <groupId>org.apache.ki</groupId>
+        <artifactId>ki-root</artifactId>
+        <version>1.0-incubating-SNAPSHOT</version>
+    </parent>
+
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>ki-all</artifactId>
+    <name>Apache Ki :: Jar Bundle</name>
+    <description>Creates a bundled Ki .jar from the module jars</description>
+    <packaging>jar</packaging>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.ki</groupId>
+            <artifactId>ki-core</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.ki</groupId>
+            <artifactId>ki-web</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.ki</groupId>
+            <artifactId>ki-ehcache</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.ki</groupId>
+            <artifactId>ki-quartz</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.ki</groupId>
+            <artifactId>ki-spring</artifactId>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+                <version>1.0.1</version>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <configuration>
+                            <artifactSet>
+                                <includes>
+                                    <include>${project.groupId}:ki-core</include>
+                                    <include>${project.groupId}:ki-web</include>
+                                    <include>${project.groupId}:ki-ehcache</include>
+                                    <include>${project.groupId}:ki-quartz</include>
+                                    <include>${project.groupId}:ki-spring</include>
+                                </includes>
+                            </artifactSet>
+                            <!-- <transformers>
+                                <transformer implementation="org.apache.maven.plugins.shade.resource.ApacheNoticeResourceTransformer">
+                                    <projectName>Apache ActiveMQ</projectName>
+                                </transformer>
+                            </transformers> -->
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+
+            <!-- <plugin>
+                <groupId>org.apache.geronimo.genesis.plugins</groupId>
+                <artifactId>tools-maven-plugin</artifactId>
+
+                <executions>
+                    <execution>
+                        <id>verify-legal-files</id>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>verify-legal-files</goal>
+                        </goals>
+                        <configuration>
+                            <strict>false</strict>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin> -->
+
+        </plugins>
+    </build>
+
+</project>
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 0deeddb..5a19cf7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -76,6 +76,7 @@
         <module>web</module>
         <module>support</module>
         <module>samples</module>
+        <module>all</module>
     </modules>
 
     <build>