[jboss-cvs] Picketlink SVN: r1561 - in integration-tests/branches/eap6: picketlink-sts-eap6 and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed May 2 12:34:50 EDT 2012


Author: pskopek at redhat.com
Date: 2012-05-02 12:34:48 -0400 (Wed, 02 May 2012)
New Revision: 1561

Added:
   integration-tests/branches/eap6/picketlink-sts-eap6/
   integration-tests/branches/eap6/picketlink-sts-eap6/arquillian.xml
   integration-tests/branches/eap6/picketlink-sts-eap6/pom.xml
Log:
sts eap6 pom and arq settings.


Property changes on: integration-tests/branches/eap6/picketlink-sts-eap6
___________________________________________________________________
Added: svn:ignore
   + target


Added: integration-tests/branches/eap6/picketlink-sts-eap6/arquillian.xml
===================================================================
--- integration-tests/branches/eap6/picketlink-sts-eap6/arquillian.xml	                        (rev 0)
+++ integration-tests/branches/eap6/picketlink-sts-eap6/arquillian.xml	2012-05-02 16:34:48 UTC (rev 1561)
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<arquillian xmlns="http://jboss.org/schema/arquillian" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://jboss.org/schema/arquillian http://jboss.org/schema/arquillian/arquillian_1_0.xsd">
+
+	<container qualifier="jboss" default="true">
+		<configuration>
+			<property name="jbossHome">target/jbossas</property>
+			<property name="serverConfig">${server.config:standalone.xml}</property>
+			<property name="allowConnectingToRunningServer">true</property>
+		</configuration>
+	</container>
+</arquillian>

Added: integration-tests/branches/eap6/picketlink-sts-eap6/pom.xml
===================================================================
--- integration-tests/branches/eap6/picketlink-sts-eap6/pom.xml	                        (rev 0)
+++ integration-tests/branches/eap6/picketlink-sts-eap6/pom.xml	2012-05-02 16:34:48 UTC (rev 1561)
@@ -0,0 +1,223 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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/xsd/maven-4.0.0.xsd">
+
+    <parent>
+       <groupId>org.picketlink.product</groupId>
+       <artifactId>picketlink-integration-tests-parent</artifactId>
+       <version>2.0.0-SNAPSHOT</version>
+       <relativePath>../parent</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>picketlink-integration-sts-tests-eap6</artifactId>
+    <packaging>jar</packaging>
+    <name>PicketLink Integration Tests for WS-Trust (STS) - EAP 6</name>
+    <url>http://labs.jboss.org/portal/picketlink/</url>
+    <description>PicketLink Federation Tests for STS features against EAP6</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>
+    <build>
+      <plugins>
+        <plugin>
+           <artifactId>maven-surefire-plugin</artifactId>
+           <configuration>
+             <phase>test</phase>
+            <!--  <skipTests>true</skipTests> -->
+             <testClassesDirectory>${basedir}/../picketlink-sts-tests/target/test-classes</testClassesDirectory>
+             <testResourcesDirectory>${basedir}/../picketlink-sts-tests/target/test-classes</testResourcesDirectory>
+             <printSummary>true</printSummary>
+             <disableXmlReport>false</disableXmlReport>
+             <includes>
+               <include>**/*TestCase.java</include>
+             </includes>
+             <forkMode>once</forkMode>
+             <argLine>-Djava.endorsed.dirs=${basedir}/../picketlink-saml-tests/src/test/resources/endorsed</argLine>
+             <useFile>false</useFile>
+             <trimStackTrace>false</trimStackTrace>
+             <classpathDependencyScopeExclude>compile</classpathDependencyScopeExclude>
+             <systemPropertyVariables>
+                <arquillian.xml>arquillian.xml</arquillian.xml>
+                <arquillian.launch>jboss</arquillian.launch>
+                <server.config>standalone-picketlink.xml</server.config>
+             </systemPropertyVariables>
+             <additionalClasspathElements>
+               <!-- needed for Arquillian to find its config file -->
+               <additionalClasspathElement>${basedir}</additionalClasspathElement>
+
+
+               <!-- for EAP6 -->
+               <additionalClasspathElement>${eap6-home}/modules/org/jboss/security/xacml/main/jbossxacml-${jbossxacml-version}</additionalClasspathElement>
+               <additionalClasspathElement>${eap6-home}/modules/org/picketlink/main/picketlink-core-${pl-version}.jar</additionalClasspathElement>
+               <additionalClasspathElement>${eap6-home}/modules/org/apache/xerces/main/xercesImpl-${xerces-version}.jar</additionalClasspathElement>
+
+                 <!-- for AS7 -->
+                 <!--  additionalClasspathElement>${eap6-home}/modules/org/jboss/security/xacml/main/jbossxacml-2.0.6.Final.jar</additionalClasspathElement>
+                 <additionalClasspathElement>${eap6-home}/modules/org/picketlink/main/picketlink-fed-2.0.1.final.jar</additionalClasspathElement>
+                 <additionalClasspathElement>${eap6-home}/modules/org/picketlink/main/picketlink-bindings-2.0.1.final.jar</additionalClasspathElement>
+                 <additionalClasspathElement>${eap6-home}/modules/org/picketlink/main/picketlink-bindings-jboss-2.0.1.final.jar</additionalClasspathElement>
+                 <additionalClasspathElement>${eap6-home}/modules/org/apache/xerces/main/xercesImpl-2.9.1-jbossas-1.jar</additionalClasspathElement -->
+
+                     <!--  additionalClasspathElement>${eap-home}/client/jbosssx-client.jar</additionalClasspathElement>
+                     <additionalClasspathElement>${eap-home}/client/jmx-invoker-adaptor-client.jar</additionalClasspathElement>
+                     <additionalClasspathElement>${eap-home}/client/jbossall-client.jar</additionalClasspathElement>
+                     <additionalClasspathElement>${eap-home}/common/lib/picketlink-core-${pl-version}.jar</additionalClasspathElement>
+                     <additionalClasspathElement>${eap-home}/lib/endorsed/xercesImpl.jar</additionalClasspathElement -->
+             </additionalClasspathElements>
+             <reportNameSuffix>STS-EAP6</reportNameSuffix>
+            </configuration>
+         </plugin>
+         <plugin>
+           <artifactId>maven-antrun-plugin</artifactId>
+           <executions>
+            <execution>
+              <id>phase-1</id>
+              <phase>compile</phase>
+              <configuration>
+                 <tasks>
+                  <property name="depclasspath" refid="maven.dependency.classpath"/>
+                  <property name="version" value="${pl-version}"/>
+                  <property name="pl-webapps-main-version" value="${pl-webapps-main-version}"/>
+                  <property name="pl-fed-webapps-assembly-version" value="${pl-fed-webapps-assembly-version}"/>
+                  <property name="localRepository" value="${user.home}/.m2/repository"/>
+                  <property name="jboss.dist" value="${jboss.dist}" />
+                  <property name="EAP_ZIP" value="${EAP6_ZIP}" />
+                  <property name="EAP_URL" value="${EAP6_URL}" />
+                  <property name="EAP_DIR" value="${EAP_DIR}" />
+                  <ant antfile="${basedir}/../ant-scripts/ant-build.xml" target="init-eap6" />
+                  <!-- init-eap6 -->
+                 </tasks>
+              </configuration>
+              <goals>
+                <goal>run</goal>
+              </goals>
+             </execution>
+           </executions>
+        </plugin>
+      </plugins>
+   </build>
+
+    <dependencies>
+        <dependency>
+          <groupId>org.jboss.remoting3</groupId>
+          <artifactId>jboss-remoting</artifactId>
+          <scope>test</scope>
+        </dependency>
+        <dependency>
+          <groupId>org.jboss.logging</groupId>
+          <artifactId>jboss-logging</artifactId>
+        </dependency>
+        <dependency>
+           <groupId>junit</groupId>
+           <artifactId>junit</artifactId>
+           <scope>test</scope>
+        </dependency>
+        <dependency>
+           <groupId>org.jboss.arquillian.junit</groupId>
+           <artifactId>arquillian-junit-container</artifactId>
+           <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.as</groupId>
+            <artifactId>jboss-as-arquillian-container-managed</artifactId>
+            <scope>test</scope>
+        </dependency>
+       <dependency>
+         <groupId>httpunit</groupId>
+         <artifactId>httpunit</artifactId>
+         <version>1.7</version>
+         <scope>test</scope>
+       </dependency>
+       <dependency>
+         <groupId>rhino</groupId>
+         <artifactId>js</artifactId>
+         <version>1.6R7</version>
+         <scope>test</scope>
+       </dependency>
+       <dependency>
+         <groupId>nekohtml</groupId>
+         <artifactId>nekohtml</artifactId>
+         <scope>test</scope>
+       </dependency>
+       <dependency>
+         <groupId>xerces</groupId>
+         <artifactId>xercesImpl</artifactId>
+         <scope>test</scope>
+       </dependency>
+       <dependency>
+         <groupId>ant-contrib</groupId>
+         <artifactId>ant-contrib</artifactId>
+         <version>1.0b2</version>
+       </dependency>
+       <dependency>
+         <groupId>org.picketlink</groupId>
+         <artifactId>picketlink-core</artifactId>
+       </dependency>
+       <dependency>
+         <groupId>org.picketlink</groupId>
+         <artifactId>idp-as7</artifactId>
+         <type>war</type>
+       </dependency>
+       <dependency>
+         <groupId>org.picketlink</groupId>
+         <artifactId>pdp-as7</artifactId>
+         <type>war</type>
+       </dependency>
+       <dependency>
+         <groupId>org.picketlink</groupId>
+         <artifactId>picketlink-sts-as7</artifactId>
+         <type>war</type>
+       </dependency>
+       <dependency>
+         <groupId>org.picketlink</groupId>
+         <artifactId>picketlink-fed-webapps-as7-assembly</artifactId>
+         <type>zip</type>
+       </dependency>
+       <dependency>
+         <groupId>org.jboss.security</groupId>
+         <artifactId>jboss-xacml</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>
\ No newline at end of file



More information about the jboss-cvs-commits mailing list