[jboss-cvs] Picketbox SVN: r29 - in trunk: parent and 1 other directory.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Sun Feb 14 01:27:24 EST 2010
Author: anil.saldhana at jboss.com
Date: 2010-02-14 01:27:24 -0500 (Sun, 14 Feb 2010)
New Revision: 29
Added:
trunk/parent/
trunk/parent/pom.xml
Modified:
trunk/pom.xml
Log:
add in parent for deploy plugin
Added: trunk/parent/pom.xml
===================================================================
--- trunk/parent/pom.xml (rev 0)
+++ trunk/parent/pom.xml 2010-02-14 06:27:24 UTC (rev 29)
@@ -0,0 +1,85 @@
+<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>4</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.picketbox</groupId>
+ <artifactId>picketbox-parent</artifactId>
+ <packaging>pom</packaging>
+ <version>3.0.0.Beta1</version>
+ <name>PicketBox- Parent</name>
+ <url>http://jboss.org/picketbox</url>
+ <description>PicketBox is a security framework for authentication, authorization, audit and mapping</description>
+ <licenses>
+ <license>
+ <name>lgpl</name>
+ <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+ </license>
+ </licenses>
+ <organization>
+ <name>JBoss Inc.</name>
+ <url>http://www.jboss.org</url>
+ </organization>
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/picketbox/tags/3.0.0.Beta1</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/picketbox/tags/3.0.0.Beta1</developerConnection>
+ </scm>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-release-plugin</artifactId>
+ <configuration>
+ <tagBase>https://svn.jboss.org/repos/picketbox/tags</tagBase>
+ </configuration>
+ </plugin>
+ </plugins>
+ <pluginManagement>
+ <plugins>
+ <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>
+ </plugins>
+ </pluginManagement>
+ </build>
+
+ <repositories>
+ <repository>
+ <id>repository.jboss.org</id>
+ <name>JBoss Repository</name>
+ <layout>default</layout>
+ <url>http://repository.jboss.org/maven2/</url>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+
+ <repository>
+ <id>snapshots.jboss.org</id>
+ <name>JBoss Snapshots Repository</name>
+ <layout>default</layout>
+ <url>http://snapshots.jboss.org/maven2/</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </repository>
+ </repositories>
+
+</project>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-02-14 05:46:56 UTC (rev 28)
+++ trunk/pom.xml 2010-02-14 06:27:24 UTC (rev 29)
@@ -1,13 +1,20 @@
<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.picketbox</groupId>
+ <artifactId>picketbox-parent</artifactId>
+ <version>3.0.0.Beta1</version>
+ <relativePath>parent</relativePath>
+ </parent>
+
<modelVersion>4.0.0</modelVersion>
<groupId>org.picketbox</groupId>
<artifactId>picketbox-aggregator-pom</artifactId>
- <version>3.0.0.Beta1</version>
<packaging>pom</packaging>
<name> PicketBox - Aggregator</name>
<url>http://jboss.org/picketbox</url>
<description>PicketBox is a security framework</description>
<modules>
+ <module>parent</module>
<module>security-spi</module>
<module>security-jboss-sx</module>
<module>picketbox</module>
More information about the jboss-cvs-commits
mailing list