diff --git a/adapters/cas/pom.xml b/adapters/cas/pom.xml new file mode 100644 index 0000000000..317d6d519d --- /dev/null +++ b/adapters/cas/pom.xml @@ -0,0 +1,17 @@ + + 4.0.0 + + net.sf.acegisecurity + acegi-security-adapters + 0.9.0-SNAPSHOT + + acegi-security-cas + Acegi Security System for Spring - CAS adapter + + + cas + cas + 2.0.12 + + + diff --git a/adapters/catalina/pom.xml b/adapters/catalina/pom.xml new file mode 100644 index 0000000000..2588e444c0 --- /dev/null +++ b/adapters/catalina/pom.xml @@ -0,0 +1,17 @@ + + 4.0.0 + + net.sf.acegisecurity + acegi-security-adapters + 0.9.0-SNAPSHOT + + acegi-security-catalina + Acegi Security System for Spring - Catalina adapter + + + tomcat + catalina + 4.1.9 + + + diff --git a/adapters/jboss/pom.xml b/adapters/jboss/pom.xml new file mode 100644 index 0000000000..8ace9e89eb --- /dev/null +++ b/adapters/jboss/pom.xml @@ -0,0 +1,17 @@ + + 4.0.0 + + net.sf.acegisecurity + acegi-security-adapters + 0.9.0-SNAPSHOT + + acegi-security-jboss + Acegi Security System for Spring - JBoss adapter + + + jboss + jbosssx + 3.2.3 + + + diff --git a/adapters/jetty/pom.xml b/adapters/jetty/pom.xml new file mode 100644 index 0000000000..0e8387c5d8 --- /dev/null +++ b/adapters/jetty/pom.xml @@ -0,0 +1,17 @@ + + 4.0.0 + + net.sf.acegisecurity + acegi-security-adapters + 0.9.0-SNAPSHOT + + acegi-security-jetty + Acegi Security System for Spring - Jetty adapter + + + jetty + org.mortbay.jetty + 4.2.22 + + + diff --git a/adapters/pom.xml b/adapters/pom.xml new file mode 100644 index 0000000000..278232d0d2 --- /dev/null +++ b/adapters/pom.xml @@ -0,0 +1,30 @@ + + 4.0.0 + + net.sf.acegisecurity + acegi-security-parent + 0.9.0-SNAPSHOT + + acegi-security-adapters + Acegi Security System for Spring - Adapters + + + net.sf.acegisecurity + acegi-security + 0.9.0-SNAPSHOT + + + springframework + spring-mock + 1.2.3 + test + + + + cas + catalina + jboss + jetty + resin + + diff --git a/adapters/resin/pom.xml b/adapters/resin/pom.xml new file mode 100644 index 0000000000..a22a556cce --- /dev/null +++ b/adapters/resin/pom.xml @@ -0,0 +1,17 @@ + + 4.0.0 + + net.sf.acegisecurity + acegi-security-adapters + 0.9.0-SNAPSHOT + + acegi-security-resin + Acegi Security System for Spring - Resin adapter + + + com.caucho + resin + 3.0.9 + + + diff --git a/core-tiger/pom.xml b/core-tiger/pom.xml new file mode 100644 index 0000000000..bf27da77c5 --- /dev/null +++ b/core-tiger/pom.xml @@ -0,0 +1,29 @@ + + 4.0.0 + + net.sf.acegisecurity + acegi-security-parent + 0.9.0-SNAPSHOT + + acegi-security-tiger + Acegi Security System for Spring - Java 5 (Tiger) + + + net.sf.acegisecurity + acegi-security + 0.9.0-SNAPSHOT + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.5 + 1.5 + + + + + diff --git a/core/pom.xml b/core/pom.xml new file mode 100644 index 0000000000..b7100cff92 --- /dev/null +++ b/core/pom.xml @@ -0,0 +1,60 @@ + + 4.0.0 + + net.sf.acegisecurity + acegi-security-parent + 0.9.0-SNAPSHOT + + acegi-security + Acegi Security System for Spring + + + springframework + spring-jdbc + 1.2.3 + + + springframework + spring-remoting + 1.2.3 + + + springframework + spring-support + 1.2.3 + runtime + + + springframework + spring-mock + 1.2.3 + test + + + ehcache + ehcache + 1.1 + + + cas + casclient + 2.0.11 + + + commons-codec + commons-codec + 1.3 + + + aspectj + aspectjrt + 1.2 + + + hsqldb + hsqldb + 1.7.3.0 + runtime + + + diff --git a/doc/pom.xml b/doc/pom.xml new file mode 100644 index 0000000000..edc4583456 --- /dev/null +++ b/doc/pom.xml @@ -0,0 +1,11 @@ + + 4.0.0 + + net.sf.acegisecurity + acegi-security-parent + 0.9.0-SNAPSHOT + + acegi-security-doc + + + diff --git a/domain/pom.xml b/domain/pom.xml new file mode 100644 index 0000000000..cf6b1d7ea7 --- /dev/null +++ b/domain/pom.xml @@ -0,0 +1,39 @@ + + 4.0.0 + + net.sf.acegisecurity + acegi-security-parent + 0.9.0-SNAPSHOT + + acegi-security-domain + Acegi Security System for Spring - Domain Object Support + + + net.sf.acegisecurity + acegi-security + 0.9.0-SNAPSHOT + + + org.hibernate + hibernate + 3.0.3 + + + springframework + spring-hibernate + 1.2.3 + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.5 + 1.5 + + + + + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000000..38544ce6c7 --- /dev/null +++ b/pom.xml @@ -0,0 +1,81 @@ + + 4.0.0 + net.sf.acegisecurity + acegi-security-parent + 0.9.0-SNAPSHOT + pom + + + core + core-tiger + adapters + domain + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.3 + 1.3 + + + + org.apache.maven.plugins + maven-surefire-plugin + + + test + + + **/*Tests.* + + + **/Abstract* + + + + + + + + + + + \ No newline at end of file diff --git a/samples/annotations/pom.xml b/samples/annotations/pom.xml new file mode 100644 index 0000000000..da47216e8f --- /dev/null +++ b/samples/annotations/pom.xml @@ -0,0 +1,24 @@ + + 4.0.0 + + net.sf.acegisecurity + acegi-security-samples + 0.9.0-SNAPSHOT + + acegi-security-sample-annotations + Acegi Security System for Spring - Annotations sample + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.5 + 1.5 + + + + + diff --git a/samples/attributes/pom.xml b/samples/attributes/pom.xml new file mode 100644 index 0000000000..f7339519e8 --- /dev/null +++ b/samples/attributes/pom.xml @@ -0,0 +1,12 @@ + + 4.0.0 + + net.sf.acegisecurity + acegi-security-samples + 0.9.0-SNAPSHOT + + acegi-security-sample-attributes + Acegi Security System for Spring - Attributes sample + + + diff --git a/samples/contacts/pom.xml b/samples/contacts/pom.xml new file mode 100644 index 0000000000..accddd4805 --- /dev/null +++ b/samples/contacts/pom.xml @@ -0,0 +1,13 @@ + + 4.0.0 + + net.sf.acegisecurity + acegi-security-samples + 0.9.0-SNAPSHOT + + acegi-security-sample-contacts + Acegi Security System for Spring - Contacts sample + war + + + diff --git a/samples/pom.xml b/samples/pom.xml new file mode 100644 index 0000000000..1d0545d218 --- /dev/null +++ b/samples/pom.xml @@ -0,0 +1,28 @@ + + 4.0.0 + + net.sf.acegisecurity + acegi-security-parent + 0.9.0-SNAPSHOT + + acegi-security-samples + Acegi Security System for Spring - Samples + pom + + + net.sf.acegisecurity + acegi-security-tiger + 0.9.0-SNAPSHOT + + + + + annotations + attributes + + + + diff --git a/sandbox/pom.xml b/sandbox/pom.xml new file mode 100644 index 0000000000..84edd09309 --- /dev/null +++ b/sandbox/pom.xml @@ -0,0 +1,35 @@ + + 4.0.0 + + net.sf.acegisecurity + acegi-security-parent + 0.9.0-SNAPSHOT + + acegi-security-sandbox + Acegi Security System for Spring - Sandbox + + + net.sf.acegisecurity + acegi-security + 0.9.0-SNAPSHOT + + + directory + apacheds-main + 0.9-SNAPSHOT + jar + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.5 + 1.5 + + + + +