[jboss-cvs] JBossAS SVN: r71509 - in projects/security/security-xacml/trunk: parent and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Mar 31 16:11:59 EDT 2008


Author: anil.saldhana at jboss.com
Date: 2008-03-31 16:11:59 -0400 (Mon, 31 Mar 2008)
New Revision: 71509

Added:
   projects/security/security-xacml/trunk/parent/
   projects/security/security-xacml/trunk/parent/pom.xml
   projects/security/security-xacml/trunk/pom.xml
Removed:
   projects/security/security-xacml/trunk/build/
   projects/security/security-xacml/trunk/parent/assembly/
   projects/security/security-xacml/trunk/parent/pom.xml
Log:
get a parent module

Copied: projects/security/security-xacml/trunk/parent (from rev 71503, projects/security/security-xacml/trunk/build)

Deleted: projects/security/security-xacml/trunk/parent/pom.xml
===================================================================
--- projects/security/security-xacml/trunk/build/pom.xml	2008-03-31 19:20:34 UTC (rev 71503)
+++ projects/security/security-xacml/trunk/parent/pom.xml	2008-03-31 20:11:59 UTC (rev 71509)
@@ -1,149 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  The parent maven for the project that expects a structure like: 
-    build/pom.xml
-    jboss-xacml/pom.xml
-    jboss-xacml-docs/pom.xml
-
-  This pom aggregates the subproject pom, and it also functions as a default 
-  configuration.  The subproject poms each inherit configuration from this one.
-  
-  To build this project maven 2 should be installed and in the system path. 
-  From the command line run "mvn" from the build directory and "install" will 
-  be used as the default goal.  In order to use the "deploy" goal, 
-  the mvn.cvs.root should be specified in settings.xml.
-  
-  To add a module edit the modules section and add the module also to 
-  assembly/bin.xml and assembly.sources.xml.
--->
-<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</groupId>
-    <artifactId>jboss-parent</artifactId>
-    <version>3</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.jboss.security</groupId>
-  <artifactId>jboss-xacml-project</artifactId>
-  <version>2.0.2-SNAPSHOT</version>
-  <packaging>pom</packaging>
-  <name>JBoss XACML Build</name>
-  <url>http://www.jboss.com</url>
-  <description>
-    The JBoss XACML Project
-  </description>
-   <scm>
-      <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/security/security-xacml/trunk</connection>
-      <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/security/security-xacml/trunk</developerConnection>
-   </scm>
-  <build>
-    <sourceDirectory>src/main</sourceDirectory>
-    <testSourceDirectory>src/tests</testSourceDirectory>
-    <finalName>${artifactId}</finalName>
-    <resources>
-      <resource>
-        <directory>src/etc</directory>
-        <includes>
-          <include>**/*</include>
-        </includes>
-        <filtering>true</filtering>
-      </resource>
-    </resources>
-    <testResources>
-      <testResource>
-        <directory>src/resources</directory>
-        <includes>
-          <include>**/*</include>
-        </includes>
-        <filtering>true</filtering>
-      </testResource>
-    </testResources>
-    <plugins>
-
-    <!-- define that we wish to create src jars -->
-   <plugin>
-       <artifactId>maven-source-plugin</artifactId>
-       <version>2.0</version>
-       <inherited>true</inherited>
-       <executions>
-           <execution>
-               <goals>
-                   <goal>jar</goal>
-                </goals>
-           </execution>
-       </executions>
-    </plugin>
-      <plugin>
-        <artifactId>maven-assembly-plugin</artifactId>
-        <executions>
-          <execution>
-            <phase>package</phase>
-            <goals>
-              <goal>assembly</goal>
-            </goals>
-          </execution>
-        </executions>
-        <configuration>
-          <descriptors>
-            <descriptor>assembly/bin.xml</descriptor>
-            <descriptor>assembly/sources.xml</descriptor>
-          </descriptors>
-        </configuration>
-        <inherited>false</inherited>
-      </plugin>
-      <plugin>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <printSummary>true</printSummary>
-          <disableXmlReport>false</disableXmlReport>
-          <testFailureIgnore>true</testFailureIgnore>
-          <includes>
-           <include>**/**TestCase.java</include>
-          </includes>
-          <forkMode>pertest</forkMode>
-          <argLine>${surefire.jvm.args}</argLine>
-          <useFile>false</useFile>
-          <trimStackTrace>false</trimStackTrace>
-        </configuration>
-      </plugin>
-
-      <plugin>
-        <groupId>org.jboss.maven.plugins</groupId>
-        <artifactId>maven-jboss-deploy-plugin</artifactId>
-        <version>1.6</version>
-        <executions>
-          <execution>
-            <id>jboss-deploy</id>
-            <goals>
-              <goal>jboss-deploy</goal>
-            </goals>
-            <phase>deploy</phase>
-          </execution>
-       </executions>
-       <configuration>
-         <groupId>jboss</groupId>
-         <license>lgpl</license>
-         <jbossDeployRoot>${jboss.repository.root}</jbossDeployRoot>
-         <removeArtifactVersion>true</removeArtifactVersion>
-       </configuration>
-      </plugin>
-    </plugins>
-  </build>
-  <repositories>
-    <repository>
-      <id>jboss</id>
-      <name>JBoss Repository</name>
-      <layout>default</layout>
-      <url>http://anonsvn.jboss.org/repos/repository.jboss.org/maven2</url>
-      <snapshots>
-        <enabled>true</enabled>
-      </snapshots>
-    </repository>
-  </repositories>
-  <modules>
-    <module>../jboss-sunxacml</module>
-    <module>../jboss-xacml</module>
-    <module>../jboss-xacml-saml</module>
-  </modules>
-</project>

Copied: projects/security/security-xacml/trunk/parent/pom.xml (from rev 71508, projects/security/security-xacml/trunk/build/pom.xml)
===================================================================
--- projects/security/security-xacml/trunk/parent/pom.xml	                        (rev 0)
+++ projects/security/security-xacml/trunk/parent/pom.xml	2008-03-31 20:11:59 UTC (rev 71509)
@@ -0,0 +1,77 @@
+<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</groupId>
+    <artifactId>jboss-parent</artifactId>
+    <version>3</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.security</groupId>
+  <artifactId>jboss-xacml-project</artifactId>
+  <version>2.0.2-SNAPSHOT</version>
+  <packaging>pom</packaging>
+  <name>JBoss XACML Build</name>
+  <url>http://www.jboss.com</url>
+  <description>
+    The JBoss XACML Project
+  </description>
+   <scm>
+      <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/security/security-xacml/trunk</connection>
+      <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/security/security-xacml/trunk</developerConnection>
+   </scm>
+  <build>
+    <sourceDirectory>src/main</sourceDirectory>
+    <testSourceDirectory>src/tests</testSourceDirectory>
+    <finalName>${artifactId}</finalName>
+    <resources>
+      <resource>
+        <directory>src/etc</directory>
+        <includes>
+          <include>**/*</include>
+        </includes>
+        <filtering>true</filtering>
+      </resource>
+    </resources>
+    <testResources>
+      <testResource>
+        <directory>src/resources</directory>
+        <includes>
+          <include>**/*</include>
+        </includes>
+        <filtering>true</filtering>
+      </testResource>
+    </testResources>
+    <plugins>
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jboss-deploy-plugin</artifactId>
+        <version>1.6</version>
+        <executions>
+          <execution>
+            <id>jboss-deploy</id>
+            <goals>
+              <goal>jboss-deploy</goal>
+            </goals>
+            <phase>deploy</phase>
+          </execution>
+       </executions>
+       <configuration>
+         <groupId>jboss</groupId>
+         <license>lgpl</license>
+         <jbossDeployRoot>${jboss.repository.root}</jbossDeployRoot>
+         <removeArtifactVersion>true</removeArtifactVersion>
+       </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <repositories>
+    <repository>
+      <id>jboss</id>
+      <name>JBoss Repository</name>
+      <layout>default</layout>
+      <url>http://anonsvn.jboss.org/repos/repository.jboss.org/maven2</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+</project>

Added: projects/security/security-xacml/trunk/pom.xml
===================================================================
--- projects/security/security-xacml/trunk/pom.xml	                        (rev 0)
+++ projects/security/security-xacml/trunk/pom.xml	2008-03-31 20:11:59 UTC (rev 71509)
@@ -0,0 +1,22 @@
+<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-xacml-project</artifactId>
+      <version>2.0.2-SNAPSHOT</version>
+      <relativePath>parent</relativePath>
+   </parent>
+   <modelVersion>4.0.0</modelVersion>
+   <groupId>org.jboss.security</groupId>
+   <artifactId>jboss-xacml-main</artifactId>
+   <packaging>pom</packaging>
+   <version>2.0.2-SNAPSHOT</version>
+   <name>JBoss XACML - 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>
+   <modules>
+     <module>parent</module>
+     <module>jboss-sunxacml</module>
+     <module>jboss-xacml</module>
+     <module>jboss-xacml-saml</module>
+   </modules>
+</project>




More information about the jboss-cvs-commits mailing list