You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by lh...@apache.org on 2009/03/26 00:59:24 UTC

svn commit: r758470 - in /incubator/jsecurity/trunk: all/ all/pom.xml pom.xml

Author: lhazlewood
Date: Wed Mar 25 23:59:20 2009
New Revision: 758470

URL: http://svn.apache.org/viewvc?rev=758470&view=rev
Log:
added jar bundle module

Added:
    incubator/jsecurity/trunk/all/   (with props)
    incubator/jsecurity/trunk/all/pom.xml
Modified:
    incubator/jsecurity/trunk/pom.xml

Propchange: incubator/jsecurity/trunk/all/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Mar 25 23:59:20 2009
@@ -0,0 +1 @@
+*.iml

Added: incubator/jsecurity/trunk/all/pom.xml
URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/all/pom.xml?rev=758470&view=auto
==============================================================================
--- incubator/jsecurity/trunk/all/pom.xml (added)
+++ incubator/jsecurity/trunk/all/pom.xml Wed Mar 25 23:59:20 2009
@@ -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

Modified: incubator/jsecurity/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/pom.xml?rev=758470&r1=758469&r2=758470&view=diff
==============================================================================
--- incubator/jsecurity/trunk/pom.xml (original)
+++ incubator/jsecurity/trunk/pom.xml Wed Mar 25 23:59:20 2009
@@ -76,6 +76,7 @@
         <module>web</module>
         <module>support</module>
         <module>samples</module>
+        <module>all</module>
     </modules>
 
     <build>