Author: anil.saldhana(a)jboss.com
Date: 2008-09-15 11:22:10 -0400 (Mon, 15 Sep 2008)
New Revision: 86
Added:
identity-federation/trunk/identity-opensaml/.classpath
identity-federation/trunk/identity-opensaml/.project
identity-federation/trunk/identity-opensaml/src/
identity-federation/trunk/identity-opensaml/src/main/
identity-federation/trunk/identity-opensaml/src/main/java/
identity-federation/trunk/identity-opensaml/src/main/resources/
identity-federation/trunk/identity-opensaml/src/test/
identity-federation/trunk/identity-opensaml/src/test/java/
identity-federation/trunk/identity-opensaml/src/test/java/org/
identity-federation/trunk/identity-opensaml/src/test/java/org/jboss/
identity-federation/trunk/identity-opensaml/src/test/java/org/jboss/test/
identity-federation/trunk/identity-opensaml/src/test/java/org/jboss/test/identity/
identity-federation/trunk/identity-opensaml/src/test/java/org/jboss/test/identity/federation/
identity-federation/trunk/identity-opensaml/src/test/java/org/jboss/test/identity/federation/opensaml/
identity-federation/trunk/identity-opensaml/src/test/java/org/jboss/test/identity/federation/opensaml/saml2/
identity-federation/trunk/identity-opensaml/src/test/java/org/jboss/test/identity/federation/opensaml/saml2/OpenSAML2AuthnRequestUnitTestCase.java
identity-federation/trunk/identity-opensaml/src/test/resources/
identity-federation/trunk/identity-opensaml/src/test/resources/endorsed/
identity-federation/trunk/identity-opensaml/src/test/resources/endorsed/resolver.jar
identity-federation/trunk/identity-opensaml/src/test/resources/endorsed/serializer.jar
identity-federation/trunk/identity-opensaml/src/test/resources/endorsed/xalan.jar
identity-federation/trunk/identity-opensaml/src/test/resources/endorsed/xercesImpl.jar
identity-federation/trunk/identity-opensaml/src/test/resources/endorsed/xml-apis.jar
Modified:
identity-federation/trunk/identity-opensaml/pom.xml
identity-federation/trunk/parent/pom.xml
Log:
update with opensaml2 deps
Added: identity-federation/trunk/identity-opensaml/.classpath
===================================================================
--- identity-federation/trunk/identity-opensaml/.classpath (rev
0)
+++ identity-federation/trunk/identity-opensaml/.classpath 2008-09-15 15:22:10 UTC (rev
86)
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="src" path="src/main/java"/>
+ <classpathentry kind="src" path="src/test/java"/>
+ <classpathentry kind="con"
path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+ <classpathentry kind="var"
path="M2_REPO/opensaml/opensaml/2.1.0/opensaml-2.1.0.jar"/>
+ <classpathentry kind="var"
path="M2_REPO/junit/junit/4.4/junit-4.4.jar"/>
+ <classpathentry kind="var"
path="M2_REPO/opensaml/xmltooling/1.0.1/xmltooling-1.0.1.jar"/>
+ <classpathentry kind="var"
path="M2_REPO/org/slf4j/slf4j-api/1.5.0/slf4j-api-1.5.0.jar"/>
+ <classpathentry kind="var"
path="M2_REPO/org/slf4j/slf4j-log4j12/1.5.0/slf4j-log4j12-1.5.0.jar"/>
+ <classpathentry kind="var"
path="M2_REPO/apache-log4j/log4j/1.2.14/log4j-1.2.14.jar"/>
+ <classpathentry kind="var"
path="M2_REPO/apache-xmlsec/xmlsec/1.3.0/xmlsec-1.3.0.jar"/>
+ <classpathentry kind="var"
path="M2_REPO/apache-logging/commons-logging-api/1.0.3/commons-logging-api-1.0.3.jar"/>
+ <classpathentry kind="var"
path="M2_REPO/apache-velocity/velocity/1.5/velocity-1.5.jar"/>
+ <classpathentry kind="var"
path="M2_REPO/apache-collections/commons-collections/3.1/commons-collections-3.1.jar"/>
+ <classpathentry kind="var"
path="M2_REPO/apache-lang/commons-lang/2.1/commons-lang-2.1.jar"/>
+ <classpathentry kind="var"
path="M2_REPO/opensaml/openws/1.1.0/openws-1.1.0.jar"/>
+ <classpathentry kind="var"
path="M2_REPO/joda-time/joda-time/1.5.2/joda-time-1.5.2.jar"/>
+ <classpathentry kind="output" path="target/eclipse-classes"/>
+</classpath>
Added: identity-federation/trunk/identity-opensaml/.project
===================================================================
--- identity-federation/trunk/identity-opensaml/.project (rev 0)
+++ identity-federation/trunk/identity-opensaml/.project 2008-09-15 15:22:10 UTC (rev 86)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>identity-opensaml</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ </natures>
+</projectDescription>
Modified: identity-federation/trunk/identity-opensaml/pom.xml
===================================================================
--- identity-federation/trunk/identity-opensaml/pom.xml 2008-09-12 06:12:59 UTC (rev 85)
+++ identity-federation/trunk/identity-opensaml/pom.xml 2008-09-15 15:22:10 UTC (rev 86)
@@ -26,8 +26,76 @@
<
developerConnection>scm:svn:https://svn.jboss.org/jbossidentity/identi...
<
url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbossidentity/identity-...
</scm>
+ <build>
+ <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>-Djava.endorsed.dirs=${basedir}/src/test/resources/endorsed</argLine>
+ <useFile>false</useFile>
+ <trimStackTrace>false</trimStackTrace>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
<dependencies>
<dependency>
+ <groupId>opensaml</groupId>
+ <artifactId>opensaml</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>opensaml</groupId>
+ <artifactId>xmltooling</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>opensaml</groupId>
+ <artifactId>openws</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>apache-log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>apache-xmlsec</groupId>
+ <artifactId>xmlsec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>apache-logging</groupId>
+ <artifactId>commons-logging-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>apache-velocity</groupId>
+ <artifactId>velocity</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>apache-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>apache-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>joda-time</groupId>
+ <artifactId>joda-time</artifactId>
+ </dependency>
+ <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
Added:
identity-federation/trunk/identity-opensaml/src/test/java/org/jboss/test/identity/federation/opensaml/saml2/OpenSAML2AuthnRequestUnitTestCase.java
===================================================================
---
identity-federation/trunk/identity-opensaml/src/test/java/org/jboss/test/identity/federation/opensaml/saml2/OpenSAML2AuthnRequestUnitTestCase.java
(rev 0)
+++
identity-federation/trunk/identity-opensaml/src/test/java/org/jboss/test/identity/federation/opensaml/saml2/OpenSAML2AuthnRequestUnitTestCase.java 2008-09-15
15:22:10 UTC (rev 86)
@@ -0,0 +1,42 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+ */
+package org.jboss.test.identity.federation.opensaml.saml2;
+
+import junit.framework.TestCase;
+
+/**
+ * Unit Test the OpenSAML2 Authentication Constructs
+ * @author Anil.Saldhana(a)redhat.com
+ * @since Sep 12, 2008
+ */
+public class OpenSAML2AuthnRequestUnitTestCase extends TestCase
+{
+ @Override
+ protected void setUp() throws Exception
+ {
+ org.opensaml.DefaultBootstrap.bootstrap();
+ }
+
+ public void testAuthnRequestCreation()
+ {
+ }
+}
\ No newline at end of file
Added:
identity-federation/trunk/identity-opensaml/src/test/resources/endorsed/resolver.jar
===================================================================
(Binary files differ)
Property changes on:
identity-federation/trunk/identity-opensaml/src/test/resources/endorsed/resolver.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added:
identity-federation/trunk/identity-opensaml/src/test/resources/endorsed/serializer.jar
===================================================================
(Binary files differ)
Property changes on:
identity-federation/trunk/identity-opensaml/src/test/resources/endorsed/serializer.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: identity-federation/trunk/identity-opensaml/src/test/resources/endorsed/xalan.jar
===================================================================
(Binary files differ)
Property changes on:
identity-federation/trunk/identity-opensaml/src/test/resources/endorsed/xalan.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added:
identity-federation/trunk/identity-opensaml/src/test/resources/endorsed/xercesImpl.jar
===================================================================
(Binary files differ)
Property changes on:
identity-federation/trunk/identity-opensaml/src/test/resources/endorsed/xercesImpl.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added:
identity-federation/trunk/identity-opensaml/src/test/resources/endorsed/xml-apis.jar
===================================================================
(Binary files differ)
Property changes on:
identity-federation/trunk/identity-opensaml/src/test/resources/endorsed/xml-apis.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: identity-federation/trunk/parent/pom.xml
===================================================================
--- identity-federation/trunk/parent/pom.xml 2008-09-12 06:12:59 UTC (rev 85)
+++ identity-federation/trunk/parent/pom.xml 2008-09-15 15:22:10 UTC (rev 86)
@@ -91,6 +91,66 @@
<scope>test</scope>
</dependency>
<dependency>
+ <groupId>opensaml</groupId>
+ <artifactId>opensaml</artifactId>
+ <version>2.1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>opensaml</groupId>
+ <artifactId>openws</artifactId>
+ <version>1.1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>opensaml</groupId>
+ <artifactId>xmltooling</artifactId>
+ <version>1.0.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>1.5.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ <version>1.5.0</version>
+ </dependency>
+ <dependency>
+ <groupId>apache-log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.14</version>
+ </dependency>
+ <dependency>
+ <groupId>apache-xmlsec</groupId>
+ <artifactId>xmlsec</artifactId>
+ <version>1.3.0</version>
+ </dependency>
+ <dependency>
+ <groupId>apache-logging</groupId>
+ <artifactId>commons-logging-api</artifactId>
+ <version>1.0.3</version>
+ </dependency>
+ <dependency>
+ <groupId>apache-velocity</groupId>
+ <artifactId>velocity</artifactId>
+ <version>1.5</version>
+ </dependency>
+ <dependency>
+ <groupId>apache-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ <version>3.1</version>
+ </dependency>
+ <dependency>
+ <groupId>apache-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <version>2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>joda-time</groupId>
+ <artifactId>joda-time</artifactId>
+ <version>1.5.2</version>
+ </dependency>
+ <dependency>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<version>1.0</version>