Browse Source

Split sandbox in subprojects

Carlos Sanchez 19 years ago
parent
commit
881d50e2a6
3 changed files with 29 additions and 55 deletions
  1. 4 3
      sandbox/other/pom.xml
  2. 8 52
      sandbox/pom.xml
  3. 17 0
      sandbox/webwork/pom.xml

+ 4 - 3
sandbox/other/pom.xml

@@ -5,11 +5,12 @@
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.acegisecurity</groupId>
-    <artifactId>acegi-security-parent</artifactId>
+    <artifactId>acegi-security-sandbox</artifactId>
     <version>1.1-SNAPSHOT</version>
   </parent>
-  <artifactId>acegi-security-sandbox</artifactId>
-  <name>Acegi Security System for Spring - Sandbox</name>
+  <artifactId>acegi-security-sandbox-other</artifactId>
+  <name>Acegi Security System for Spring - Sandbox other</name>
+  <description>Acegi Security System for Spring Miscellaneus sandbox utilities</description>
   <dependencies>
     <dependency>
       <groupId>org.acegisecurity</groupId>

+ 8 - 52
sandbox/pom.xml

@@ -10,62 +10,18 @@
   </parent>
   <artifactId>acegi-security-sandbox</artifactId>
   <name>Acegi Security System for Spring - Sandbox</name>
+  <packaging>pom</packaging>
+
+  <modules>
+    <module>webwork</module>
+    <module>other</module>
+  </modules>
+
   <dependencies>
     <dependency>
       <groupId>org.acegisecurity</groupId>
       <artifactId>acegi-security</artifactId>
-      <version>${project.version}</version>
+      <version>1.1-SNAPSHOT</version>
     </dependency>
-    <dependency>
-      <groupId>org.springframework</groupId>
-      <artifactId>spring-mock</artifactId>
-      <optional>true</optional>
-    </dependency>      
-    <dependency>
-      <groupId>javax.servlet</groupId>
-      <artifactId>servlet-api</artifactId>
-      <version>2.4</version>
-      <optional>true</optional>
-    </dependency>
-    <dependency>
-      <groupId>ehcache</groupId>
-      <artifactId>ehcache</artifactId>
-      <version>1.1</version>
-      <optional>true</optional>
-    </dependency>      
-    <dependency>
-      <groupId>ldapsdk</groupId>
-      <artifactId>ldapsdk</artifactId>
-      <version>4.1</version>
-    </dependency>
-    <dependency>
-      <groupId>net.sf.ldaptemplate</groupId>
-      <artifactId>ldaptemplate</artifactId>
-      <version>1.0.1</version>
-    </dependency>
-    <dependency>
-      <groupId>org.samba.jcifs</groupId>
-      <artifactId>jcifs</artifactId>
-      <version>1.2.6</version>
-      <type>jar</type>
-    </dependency>
-      <dependency>
-        <groupId>hsqldb</groupId>
-        <artifactId>hsqldb</artifactId>
-        <version>1.8.0.4</version>
-          <scope>test</scope>
-      </dependency>
   </dependencies>
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <configuration>
-          <source>1.4</source>
-          <target>1.4</target>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
 </project>

+ 17 - 0
sandbox/webwork/pom.xml

@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<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">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.acegisecurity</groupId>
+    <artifactId>acegi-security-sandbox</artifactId>
+    <version>1.1-SNAPSHOT</version>
+  </parent>
+  <artifactId>acegi-security-webwork</artifactId>
+  <name>Acegi Security System for Spring - Webwork support</name>
+  <description>Acegi Security System for Spring - Support for WebWork 2</description>
+  <version>0.1-SNAPSHOT</version>
+  <dependencies>
+  </dependencies>
+</project>