[jboss-cvs] Picketbox SVN: r89 - in trunk: security-jboss-sx and 14 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed May 12 12:23:41 EDT 2010


Author: anil.saldhana at jboss.com
Date: 2010-05-12 12:23:39 -0400 (Wed, 12 May 2010)
New Revision: 89

Modified:
   trunk/parent/pom.xml
   trunk/security-jboss-sx/acl/pom.xml
   trunk/security-jboss-sx/assembly/pom.xml
   trunk/security-jboss-sx/identity/pom.xml
   trunk/security-jboss-sx/jbosssx-client/pom.xml
   trunk/security-jboss-sx/jbosssx-mc-int/pom.xml
   trunk/security-jboss-sx/jbosssx/pom.xml
   trunk/security-jboss-sx/parent/pom.xml
   trunk/security-jboss-sx/pom.xml
   trunk/security-spi/acl/pom.xml
   trunk/security-spi/assembly/pom.xml
   trunk/security-spi/authorization/pom.xml
   trunk/security-spi/identity/pom.xml
   trunk/security-spi/parent/pom.xml
   trunk/security-spi/pom.xml
   trunk/security-spi/spi/pom.xml
Log:
fix the pom groupid and deps

Modified: trunk/parent/pom.xml
===================================================================
--- trunk/parent/pom.xml	2010-05-05 23:00:14 UTC (rev 88)
+++ trunk/parent/pom.xml	2010-05-12 16:23:39 UTC (rev 89)
@@ -2,7 +2,7 @@
    <parent>
       <groupId>org.jboss</groupId>
       <artifactId>jboss-parent</artifactId>
-      <version>4</version>
+      <version>5</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.picketbox</groupId>

Modified: trunk/security-jboss-sx/acl/pom.xml
===================================================================
--- trunk/security-jboss-sx/acl/pom.xml	2010-05-05 23:00:14 UTC (rev 88)
+++ trunk/security-jboss-sx/acl/pom.xml	2010-05-12 16:23:39 UTC (rev 89)
@@ -1,16 +1,16 @@
 <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.jboss.security</groupId>
+      <groupId>org.picketbox</groupId>
       <artifactId>jbosssx-parent</artifactId>
       <version>3.0.0.Beta5-SNAPSHOT</version>
       <relativePath>../parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>
-   <artifactId>jboss-security-acl-impl</artifactId>
+   <artifactId>picketbox-acl-impl</artifactId>
    <packaging>jar</packaging>
-   <name>JBoss Security ACL Implementation</name>
-   <url>http://labs.jboss.org/portal/jbosssecurity/</url>
-   <description>JBoss Security is a cross cutting project that handles security for the JEMS projects</description>
+   <name>PicketBox ACL Implementation</name>
+   <url>http://jboss.org/picketbox</url>
+   <description>PicketBox is a security project for Java Applications.</description>
    <licenses>
       <license>
          <name>lgpl</name>
@@ -95,13 +95,13 @@
          <scope>test</scope>
       </dependency>
       <dependency>
-         <groupId>org.jboss.security</groupId>
+         <groupId>org.picketbox</groupId>
          <artifactId>acl-spi</artifactId>
          <version>${project.version}</version>
          <scope>compile</scope>
       </dependency>    
       <dependency>
-         <groupId>org.jboss.security</groupId>
+         <groupId>org.picketbox</groupId>
          <artifactId>identity-impl</artifactId>
          <version>${project.version}</version>
          <scope>compile</scope>

Modified: trunk/security-jboss-sx/assembly/pom.xml
===================================================================
--- trunk/security-jboss-sx/assembly/pom.xml	2010-05-05 23:00:14 UTC (rev 88)
+++ trunk/security-jboss-sx/assembly/pom.xml	2010-05-12 16:23:39 UTC (rev 89)
@@ -1,11 +1,10 @@
 <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.jboss.security</groupId>
+    <groupId>org.picketbox</groupId>
     <artifactId>jbosssx-parent</artifactId>
     <version>3.0.0.Beta5-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>org.jboss.security</groupId>
   <artifactId>jbosssx</artifactId>
   <packaging>pom</packaging>
   <name>JBoss Security Implementation for the JBAS - Assembly</name>
@@ -39,14 +38,14 @@
         <configuration>
           <archive>
             <manifestEntries>
-              <Specification-Title>JBoss Security Implementation for the JBAS</Specification-Title>
+              <Specification-Title>PicketBox security for Java Applications.</Specification-Title>
               <Specification-Version>${project.version}</Specification-Version>
               <Specification-Vendor>Red Hat Middleware LLC</Specification-Vendor>
               <Implementation-Title>JBoss Security Implementation for the JBAS</Implementation-Title>
               <Implementation-Version>${project.version}</Implementation-Version>
-              <Implementation-VendorId>org.jboss.security</Implementation-VendorId>
+              <Implementation-VendorId>org.picketbox</Implementation-VendorId>
               <Implementation-Vendor>Red Hat Middleware LLC</Implementation-Vendor>
-              <Implementation-URL>http://labs.jboss.org/portal/jbosssecurity/</Implementation-URL>
+              <Implementation-URL>http://jboss.org/picketbox</Implementation-URL>
             </manifestEntries>
           </archive>
           <descriptors>

Modified: trunk/security-jboss-sx/identity/pom.xml
===================================================================
--- trunk/security-jboss-sx/identity/pom.xml	2010-05-05 23:00:14 UTC (rev 88)
+++ trunk/security-jboss-sx/identity/pom.xml	2010-05-12 16:23:39 UTC (rev 89)
@@ -1,6 +1,6 @@
 <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.jboss.security</groupId>
+      <groupId>org.picketbox</groupId>
       <artifactId>jbosssx-parent</artifactId>
       <version>3.0.0.Beta5-SNAPSHOT</version>
       <relativePath>../parent</relativePath>
@@ -8,9 +8,9 @@
    <modelVersion>4.0.0</modelVersion>
    <artifactId>identity-impl</artifactId>
    <packaging>jar</packaging>
-   <name>JBoss Security Identity Implementation</name>
-   <url>http://labs.jboss.org/portal/jbosssecurity/</url>
-   <description>JBoss Security is a cross cutting project that handles security for the JEMS projects</description>
+   <name>PicketBox Identity Implementation</name>
+   <url>http://jboss.org/picketbox</url>
+   <description>PicketBox is a security project for Java Applications.</description>
    <licenses>
       <license>
          <name>lgpl</name>
@@ -50,13 +50,13 @@
    </profiles>
    <dependencies> 
       <dependency>
-         <groupId>org.jboss.security</groupId>
-         <artifactId>jboss-security-spi-bare</artifactId>
+         <groupId>org.picketbox</groupId>
+         <artifactId>picketbox-spi-bare</artifactId>
          <version>${project.version}</version>
          <scope>compile</scope>
       </dependency>
       <dependency>
-         <groupId>org.jboss.security</groupId>
+         <groupId>org.picketbox</groupId>
          <artifactId>identity-spi</artifactId>
          <version>${project.version}</version>
          <scope>compile</scope>

Modified: trunk/security-jboss-sx/jbosssx/pom.xml
===================================================================
--- trunk/security-jboss-sx/jbosssx/pom.xml	2010-05-05 23:00:14 UTC (rev 88)
+++ trunk/security-jboss-sx/jbosssx/pom.xml	2010-05-12 16:23:39 UTC (rev 89)
@@ -1,6 +1,6 @@
 <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.jboss.security</groupId>
+      <groupId>org.picketbox</groupId>
       <artifactId>jbosssx-parent</artifactId>
       <version>3.0.0.Beta5-SNAPSHOT</version>
       <relativePath>../parent</relativePath>
@@ -8,9 +8,9 @@
    <modelVersion>4.0.0</modelVersion>
    <artifactId>jbosssx-bare</artifactId>
    <packaging>jar</packaging>
-   <name>JBoss Security Implementation for the JBAS</name>
-   <url>http://labs.jboss.org/portal/jbosssecurity/</url>
-   <description>JBoss Security is a cross cutting project that handles security for the JEMS projects</description>
+   <name>PicketBox implementation</name>
+   <url>http://jboss.org/picketbox</url>
+   <description>PicketBox is a security project for Java Applications.</description>
    <licenses>
       <license>
          <name>lgpl</name>
@@ -121,13 +121,13 @@
          <scope>compile</scope>
       </dependency>
       <dependency>
-         <groupId>org.jboss.security</groupId>
-         <artifactId>jboss-security-acl-impl</artifactId>
+         <groupId>org.picketbox</groupId>
+         <artifactId>picketbox-acl-impl</artifactId>
          <version>${project.version}</version>
          <scope>compile</scope>
       </dependency>
       <dependency>
-         <groupId>org.jboss.security</groupId>
+         <groupId>org.picketbox</groupId>
          <artifactId>acl-spi</artifactId>
          <version>${project.version}</version>
          <scope>compile</scope>
@@ -151,17 +151,6 @@
          <scope>compile</scope>
       </dependency>
       <dependency>
-         <groupId>sun-jaxb</groupId>
-         <artifactId>jaxb-impl</artifactId>
-         <version>2.1.9</version>
-         <scope>runtime</scope>
-      </dependency>
-      <dependency>
-         <groupId>stax</groupId>
-         <artifactId>stax-api</artifactId>
-         <version>1.0.1</version>
-      </dependency>
-      <dependency>
          <groupId>org.jboss</groupId>
          <artifactId>jnpserver</artifactId>
          <version>4.2.3.GA</version>

Modified: trunk/security-jboss-sx/jbosssx-client/pom.xml
===================================================================
--- trunk/security-jboss-sx/jbosssx-client/pom.xml	2010-05-05 23:00:14 UTC (rev 88)
+++ trunk/security-jboss-sx/jbosssx-client/pom.xml	2010-05-12 16:23:39 UTC (rev 89)
@@ -2,16 +2,16 @@
    <parent>
       <groupId>org.jboss</groupId>
       <artifactId>jboss-parent</artifactId>
-      <version>3</version>
+      <version>5</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
-   <groupId>org.jboss.security</groupId>
+   <groupId>org.picketbox</groupId>
    <artifactId>jbosssx-client</artifactId>
    <version>3.0.0.Beta5-SNAPSHOT</version>
    <packaging>jar</packaging>
-   <name>JBoss Security Client</name>
-   <url>http://www.jboss.org</url>
-   <description>JBoss Security Client Library</description>
+   <name>PicketBox Client</name>
+   <url>http://www.jboss.org/picketbox</url>
+   <description>PicketBox Client Library</description>
    <build>
    <plugins>
       <plugin>

Modified: trunk/security-jboss-sx/jbosssx-mc-int/pom.xml
===================================================================
--- trunk/security-jboss-sx/jbosssx-mc-int/pom.xml	2010-05-05 23:00:14 UTC (rev 88)
+++ trunk/security-jboss-sx/jbosssx-mc-int/pom.xml	2010-05-12 16:23:39 UTC (rev 89)
@@ -1,6 +1,6 @@
 <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.jboss.security</groupId>
+    <groupId>org.picketbox</groupId>
     <artifactId>jbosssx-parent</artifactId>
     <version>3.0.0.Beta5-SNAPSHOT</version>
     <relativePath>../parent</relativePath>
@@ -8,31 +8,31 @@
   <modelVersion>4.0.0</modelVersion>
   <artifactId>jbosssx-mc-int</artifactId>
   <packaging>jar</packaging>
-  <name>JBoss Microcontainer Security Integration</name>
-  <url>http://labs.jboss.org/portal/jbosssecurity/</url>
-  <description>JBoss Security is a cross cutting project that handles security for the JEMS projects</description>
+  <name>PicketBox JBoss Microcontainer Security Integration</name>
+  <url>http://jboss.org/picketbox</url>
+  <description>PicketBox is a security project for Java Applications.</description>
   <dependencies>
     <!-- Global dependencies -->
     <dependency>
-      <groupId>org.jboss.security</groupId>
+      <groupId>org.picketbox</groupId>
       <artifactId>jbosssx-bare</artifactId>
       <version>${project.version}</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
-      <groupId>org.jboss.security</groupId>
-      <artifactId>jboss-security-spi-bare</artifactId>
+      <groupId>org.picketbox</groupId>
+      <artifactId>picketbox-spi-bare</artifactId>
       <version>${project.version}</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
-      <groupId>org.jboss.security</groupId>
+      <groupId>org.picketbox</groupId>
       <artifactId>acl-spi</artifactId>
       <version>${project.version}</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
-      <groupId>org.jboss.security</groupId>
+      <groupId>org.picketbox</groupId>
       <artifactId>identity-spi</artifactId>
       <version>${project.version}</version>
       <scope>compile</scope>

Modified: trunk/security-jboss-sx/parent/pom.xml
===================================================================
--- trunk/security-jboss-sx/parent/pom.xml	2010-05-05 23:00:14 UTC (rev 88)
+++ trunk/security-jboss-sx/parent/pom.xml	2010-05-12 16:23:39 UTC (rev 89)
@@ -2,16 +2,16 @@
    <parent>
       <groupId>org.jboss</groupId>
       <artifactId>jboss-parent</artifactId>
-      <version>4</version>
+      <version>5</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
-   <groupId>org.jboss.security</groupId>
+   <groupId>org.picketbox</groupId>
    <artifactId>jbosssx-parent</artifactId>
    <packaging>pom</packaging>
    <version>3.0.0.Beta5-SNAPSHOT</version>
    <name>JBossSX - Parent</name>
-   <url>http://labs.jboss.org/portal/jbosssecurity/</url>
-   <description>JBoss Security is a cross cutting project that handles security for the JEMS projects</description>
+   <url>http://jboss.org/picketbox</url>
+   <description>PicketBox is a security project for Java Applications.</description>
    <licenses>
       <license>
          <name>lgpl</name>
@@ -111,23 +111,6 @@
          <scope>compile</scope>
       </dependency>
       <dependency>
-         <groupId>stax</groupId>
-         <artifactId>stax-api</artifactId>
-         <version>1.0.1</version>
-      </dependency>
-      <dependency>
-         <groupId>sun-jaxb</groupId>
-         <artifactId>jaxb-api</artifactId>
-         <version>2.1.9</version>
-         <scope>compile</scope>
-      </dependency>
-      <dependency>
-         <groupId>sun-jaxb</groupId>
-         <artifactId>jaxb-impl</artifactId>
-         <version>2.1.9</version>
-         <scope>runtime</scope>
-      </dependency>
-      <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>3.8.1</version>

Modified: trunk/security-jboss-sx/pom.xml
===================================================================
--- trunk/security-jboss-sx/pom.xml	2010-05-05 23:00:14 UTC (rev 88)
+++ trunk/security-jboss-sx/pom.xml	2010-05-12 16:23:39 UTC (rev 89)
@@ -5,13 +5,13 @@
       <version>3</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
-   <groupId>org.jboss.security</groupId>
+   <groupId>org.picketbox</groupId>
    <artifactId>jbosssx-pom</artifactId>
    <version>3.0.0.Beta5-SNAPSHOT</version>
    <packaging>pom</packaging>
-   <name>JBoss Security Implementation for the JBAS - Parent</name>
-   <url>http://labs.jboss.org/portal/jbosssecurity/</url>
-   <description>JBoss Security is a cross cutting project that handles security for the JEMS projects</description>
+   <name>PicketBox Implementation - Parent</name>
+   <url>http://jboss.org/picketbox</url>
+   <description>PicketBox is a security project for Java Applications.</description>
    <licenses>
       <license>
          <name>lgpl</name>

Modified: trunk/security-spi/acl/pom.xml
===================================================================
--- trunk/security-spi/acl/pom.xml	2010-05-05 23:00:14 UTC (rev 88)
+++ trunk/security-spi/acl/pom.xml	2010-05-12 16:23:39 UTC (rev 89)
@@ -1,16 +1,16 @@
 <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.jboss.security</groupId>
-      <artifactId>jboss-security-spi-parent</artifactId>
+      <groupId>org.picketbox</groupId>
+      <artifactId>picketbox-spi-parent</artifactId>
       <version>3.0.0.Beta5-SNAPSHOT</version>
       <relativePath>../parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>acl-spi</artifactId>
    <packaging>jar</packaging>
-   <name>JBoss Security Access Control List SPI</name>
+   <name>PicketBox Access Control List SPI</name>
    <url>http://labs.jboss.org/portal/jbosssecurity/</url>
-   <description>JBoss Security is a cross cutting project that handles security for the JEMS projects</description>
+   <description>PicketBox is a security project for Java applications.</description>
     <licenses>
        <license>
           <name>lgpl</name>
@@ -28,11 +28,11 @@
     </scm>
    <dependencies>
      <dependency>
-        <groupId>org.jboss.security</groupId>
+        <groupId>org.picketbox</groupId>
         <artifactId>identity-spi</artifactId>
      </dependency>
      <dependency>
-        <groupId>org.jboss.security</groupId>
+        <groupId>org.picketbox</groupId>
         <artifactId>authorization-spi</artifactId>
      </dependency>
   </dependencies>

Modified: trunk/security-spi/assembly/pom.xml
===================================================================
--- trunk/security-spi/assembly/pom.xml	2010-05-05 23:00:14 UTC (rev 88)
+++ trunk/security-spi/assembly/pom.xml	2010-05-12 16:23:39 UTC (rev 89)
@@ -1,17 +1,16 @@
 <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.jboss.security</groupId>
-    <artifactId>jboss-security-spi-parent</artifactId>
+    <groupId>org.picketbox</groupId>
+    <artifactId>picketbox-spi-parent</artifactId>
     <version>3.0.0.Beta5-SNAPSHOT</version>
     <relativePath>../parent</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>org.jboss.security</groupId>
   <artifactId>jboss-security-spi</artifactId>
   <packaging>pom</packaging>
   <name>JBoss Security SPI - Assembly</name>
-  <url>http://labs.jboss.org/portal/jbosssecurity/</url>
-  <description>JBoss Security is a cross cutting project that handles security for the JEMS projects</description>
+  <url>http://jboss.org/picketbox</url>
+  <description>PicketBox is a security project for Java Applications</description>
   <licenses>
     <license>
       <name>lgpl</name>

Modified: trunk/security-spi/authorization/pom.xml
===================================================================
--- trunk/security-spi/authorization/pom.xml	2010-05-05 23:00:14 UTC (rev 88)
+++ trunk/security-spi/authorization/pom.xml	2010-05-12 16:23:39 UTC (rev 89)
@@ -1,16 +1,16 @@
 <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.jboss.security</groupId>
-      <artifactId>jboss-security-spi-parent</artifactId>
+      <groupId>org.picketbox</groupId>
+      <artifactId>picketbox-spi-parent</artifactId>
       <version>3.0.0.Beta5-SNAPSHOT</version>
       <relativePath>../parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>authorization-spi</artifactId>
    <packaging>jar</packaging>
-   <name>JBoss Security Authorization SPI</name>
-   <url>http://labs.jboss.org/portal/jbosssecurity/</url>
-   <description>JBoss Security is a cross cutting project that handles security for the JEMS projects</description>
+   <name>PicketBox Authorization SPI</name>
+   <url>http://jboss.org/picketbox</url>
+   <description>PicketBox is a security project for Java Applications.</description>
     <licenses>
        <license>
           <name>lgpl</name>
@@ -28,7 +28,7 @@
     </scm>
    <dependencies>
      <dependency>
-        <groupId>org.jboss.security</groupId>
+        <groupId>org.picketbox</groupId>
         <artifactId>identity-spi</artifactId>
      </dependency>
      <dependency>

Modified: trunk/security-spi/identity/pom.xml
===================================================================
--- trunk/security-spi/identity/pom.xml	2010-05-05 23:00:14 UTC (rev 88)
+++ trunk/security-spi/identity/pom.xml	2010-05-12 16:23:39 UTC (rev 89)
@@ -1,16 +1,16 @@
 <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.jboss.security</groupId>
-      <artifactId>jboss-security-spi-parent</artifactId>
+      <groupId>org.picketbox</groupId>
+      <artifactId>picketbox-spi-parent</artifactId>
       <version>3.0.0.Beta5-SNAPSHOT</version>
       <relativePath>../parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>identity-spi</artifactId>
    <packaging>jar</packaging>
-   <name>JBoss Security Identity SPI</name>
-   <url>http://labs.jboss.org/portal/jbosssecurity/</url>
-   <description>JBoss Security is a cross cutting project that handles security for the JEMS projects</description>
+   <name>PicketBox Identity SPI</name>
+   <url>http://jboss.org/picketbox</url>
+   <description>PicketBox is a security project for Java Applications.</description>
     <licenses>
        <license>
           <name>lgpl</name>

Modified: trunk/security-spi/parent/pom.xml
===================================================================
--- trunk/security-spi/parent/pom.xml	2010-05-05 23:00:14 UTC (rev 88)
+++ trunk/security-spi/parent/pom.xml	2010-05-12 16:23:39 UTC (rev 89)
@@ -2,16 +2,16 @@
    <parent>
       <groupId>org.jboss</groupId>
       <artifactId>jboss-parent</artifactId>
-      <version>4</version>
+      <version>5</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
-   <groupId>org.jboss.security</groupId>
-   <artifactId>jboss-security-spi-parent</artifactId>
+   <groupId>org.picketbox</groupId>
+   <artifactId>picketbox-spi-parent</artifactId>
    <packaging>pom</packaging>
    <version>3.0.0.Beta5-SNAPSHOT</version>
-   <name>JBoss Security SPI - Parent</name>
-   <url>http://labs.jboss.org/portal/jbosssecurity/</url>
-   <description>JBoss Security is a cross cutting project that handles security for the JEMS projects</description>
+   <name>PicketBox SPI - Parent</name>
+   <url>http://jboss.org/picketbox</url>
+   <description>PicketBox is a security project for Java Applications.</description>
    <licenses>
       <license>
          <name>lgpl</name>
@@ -91,12 +91,12 @@
          <scope>compile</scope>
       </dependency>
       <dependency>
-         <groupId>org.jboss.security</groupId>
+         <groupId>org.picketbox</groupId>
          <artifactId>identity-spi</artifactId>
          <version>${project.version}</version>
       </dependency>
       <dependency>
-         <groupId>org.jboss.security</groupId>
+         <groupId>org.picketbox</groupId>
          <artifactId>authorization-spi</artifactId>
          <version>${project.version}</version>
       </dependency>

Modified: trunk/security-spi/pom.xml
===================================================================
--- trunk/security-spi/pom.xml	2010-05-05 23:00:14 UTC (rev 88)
+++ trunk/security-spi/pom.xml	2010-05-12 16:23:39 UTC (rev 89)
@@ -1,17 +1,16 @@
 <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.jboss.security</groupId>
-      <artifactId>jboss-security-spi-parent</artifactId>
+      <groupId>org.picketbox</groupId>
+      <artifactId>picketbox-spi-parent</artifactId>
       <version>3.0.0.Beta5-SNAPSHOT</version>
       <relativePath>parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>
-   <groupId>org.jboss.security</groupId>
-   <artifactId>jboss-security-spi-pom</artifactId>
+   <artifactId>picketbox-spi-pom</artifactId>
    <packaging>pom</packaging>
-   <name>JBoss Security SPI - Aggregator</name>
-   <url>http://labs.jboss.org/portal/jbosssecurity/</url>
-   <description>JBoss Security is a cross cutting project that handles security for the JEMS projects</description>
+   <name>PicketBox SPI - Aggregator</name>
+   <url>http://jboss.org/picketbox</url>
+   <description>PicketBox is a security project for Java Applications</description>
 
    <modules>
      <module>parent</module>

Modified: trunk/security-spi/spi/pom.xml
===================================================================
--- trunk/security-spi/spi/pom.xml	2010-05-05 23:00:14 UTC (rev 88)
+++ trunk/security-spi/spi/pom.xml	2010-05-12 16:23:39 UTC (rev 89)
@@ -1,16 +1,16 @@
 <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.jboss.security</groupId>
-      <artifactId>jboss-security-spi-parent</artifactId>
+      <groupId>org.picketbox</groupId>
+      <artifactId>picketbox-spi-parent</artifactId>
       <version>3.0.0.Beta5-SNAPSHOT</version>
       <relativePath>../parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>
-   <artifactId>jboss-security-spi-bare</artifactId>
+   <artifactId>picketbox-spi-bare</artifactId>
    <packaging>jar</packaging>
-   <name>JBoss Security SPI</name>
-   <url>http://labs.jboss.org/portal/jbosssecurity/</url>
-   <description>JBoss Security is a cross cutting project that handles security for the JEMS projects. The SPI Bare contains the SPI excluding the Authorization SPI.</description>
+   <name>Picketbox SPI</name>
+   <url>http://jboss.org/picketbox</url>
+   <description>The SPI Bare contains the SPI excluding the Authorization SPI.</description>
    <licenses>
       <license>
          <name>lgpl</name>
@@ -42,11 +42,11 @@
          <artifactId>jboss-jaspi-api</artifactId>
       </dependency>
       <dependency>
-         <groupId>org.jboss.security</groupId>
+         <groupId>org.picketbox</groupId>
          <artifactId>identity-spi</artifactId>
       </dependency>
       <dependency>
-         <groupId>org.jboss.security</groupId>
+         <groupId>org.picketbox</groupId>
          <artifactId>authorization-spi</artifactId>
       </dependency>
       <dependency>




More information about the jboss-cvs-commits mailing list