[picketlink-commits] Picketlink SVN: r968 - in social/trunk: openid and 1 other directory.

picketlink-commits at lists.jboss.org picketlink-commits at lists.jboss.org
Fri May 20 00:18:10 EDT 2011


Author: anil.saldhana at jboss.com
Date: 2011-05-20 00:18:10 -0400 (Fri, 20 May 2011)
New Revision: 968

Added:
   social/trunk/openid/
   social/trunk/openid/pom.xml
Log:
openid module

Added: social/trunk/openid/pom.xml
===================================================================
--- social/trunk/openid/pom.xml	                        (rev 0)
+++ social/trunk/openid/pom.xml	2011-05-20 04:18:10 UTC (rev 968)
@@ -0,0 +1,191 @@
+<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.picketlink</groupId>
+      <artifactId>picketlink-fed-parent</artifactId>
+      <version>2.0.0-SNAPSHOT</version>
+      <relativePath>../parent</relativePath>
+   </parent>
+   <modelVersion>4.0.0</modelVersion>
+   <artifactId>picketlink-openid</artifactId>
+   <packaging>jar</packaging>
+   <name>PicketLink Social - OpenID Adaptor</name>
+   <url>http://labs.jboss.org/portal/picketlink/</url>
+   <description>PicketLink Social - OpenID Adaptor</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>
+
+   <profiles>
+
+    <profile>
+      <id>long-tests</id>
+     <activation>
+       <activeByDefault>false</activeByDefault>
+     </activation>
+     <build>
+      <plugins>
+        <plugin>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <version>2.4.3</version>
+          <configuration>
+              <childDelegation>true</childDelegation>
+              <printSummary>true</printSummary>
+              <disableXmlReport>false</disableXmlReport>
+              <testFailureIgnore>false</testFailureIgnore>
+              <includes>
+                <include>**/integration/*TestCase.java</include>
+              </includes>
+              <forkMode>pertest</forkMode>
+              <argLine>${surefire.jvm.args}</argLine>
+              <useFile>false</useFile>
+             <trimStackTrace>false</trimStackTrace>
+           </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+   </profiles>
+
+   <build>
+     <plugins>
+       <plugin>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <version>2.7.1</version>
+          <configuration>
+            <additionalClasspathElements>
+              <additionalClasspathElement>${basedir}/src/test/resources/endorsed/xercesImpl.jar</additionalClasspathElement>
+            </additionalClasspathElements>
+            <printSummary>true</printSummary>
+            <disableXmlReport>false</disableXmlReport>
+            <testFailureIgnore>false</testFailureIgnore>
+            <includes>
+              <include>**/**TestCase.java</include>
+            </includes>
+            <forkMode>pertest</forkMode>
+            <argLine>-Djava.endorsed.dirs=${basedir}/src/test/resources/endorsed</argLine>
+            <useFile>false</useFile>
+            <trimStackTrace>false</trimStackTrace>
+          </configuration>
+        </plugin>
+     </plugins>
+  </build>
+
+   <dependencies>
+      <dependency>
+         <groupId>org.picketlink</groupId>
+         <artifactId>picketlink-fed-model</artifactId>
+         <version>${project.version}</version>
+      </dependency>
+      <dependency>
+         <groupId>org.picketlink</groupId>
+         <artifactId>picketlink-fed-core</artifactId>
+         <version>${project.version}</version>
+      </dependency>
+      <dependency>
+         <groupId>org.picketlink</groupId>
+         <artifactId>picketlink-xmlsec-model</artifactId>
+         <version>${project.version}</version>
+      </dependency>
+      <dependency>
+         <groupId>org.picketlink</groupId>
+         <artifactId>picketlink-fed-api</artifactId>
+         <version>${project.version}</version>
+      </dependency>
+      <dependency>
+         <groupId>org.openid4java</groupId>
+         <artifactId>openid4java-nodeps</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.apache</groupId>
+         <artifactId>xmlsec</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>apache-log4j</groupId>
+         <artifactId>log4j</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>javax.servlet</groupId>
+         <artifactId>servlet-api</artifactId>
+         <version>2.5</version>
+         <optional>true</optional>
+      </dependency>
+      <dependency>
+         <groupId>org.mortbay.jetty</groupId>
+         <artifactId>jetty</artifactId>
+         <scope>test</scope>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.tomcat</groupId>
+          <artifactId>jasper</artifactId>
+          <version>6.0.29</version>
+         <scope>test</scope>
+      </dependency>
+
+      <dependency>
+         <groupId>httpunit</groupId>
+         <artifactId>httpunit</artifactId>
+         <version>1.5.4</version>
+         <scope>test</scope>
+      </dependency>
+      <dependency>
+         <groupId>nekohtml</groupId>
+         <artifactId>nekohtml</artifactId>
+         <version>1.9.12</version>
+         <scope>test</scope>
+      </dependency>
+      <dependency>
+         <groupId>commons-httpclient</groupId>
+         <artifactId>commons-httpclient</artifactId>
+         <version>3.1</version>
+         <scope>test</scope>
+      </dependency>
+      <dependency>
+         <groupId>xalan</groupId>
+         <artifactId>xalan</artifactId>
+         <version>2.7.1</version>
+         <scope>test</scope>
+      </dependency>
+      <dependency>
+         <groupId>junit</groupId>
+         <artifactId>junit</artifactId>
+         <scope>test</scope>
+      </dependency>
+   </dependencies>
+   
+   <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <doclet>org.jboss.apiviz.APIviz</doclet>
+          <docletArtifact>
+            <groupId>org.jboss.apiviz</groupId>
+            <artifactId>apiviz</artifactId>
+            <version>1.2.5.GA</version>
+          </docletArtifact>
+          <additionalparam>
+            -charset UTF-8
+            -docencoding UTF-8
+            -version
+            -author
+            -breakiterator
+            -windowtitle "${project.name} ${project.version} API Reference"
+            -doctitle "${project.name} ${project.version} API Reference"
+            -bottom "Copyright © ${project.inceptionYear}-Present ${project.organization.name}. All Rights Reserved."
+            -link http://java.sun.com/javase/6/docs/api/
+            -sourceclasspath ${project.build.outputDirectory}
+          </additionalparam>
+          <encoding>UTF-8</encoding>
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>


Property changes on: social/trunk/openid/pom.xml
___________________________________________________________________
Added: svn:executable
   + *



More information about the picketlink-commits mailing list