[java-opensaml COMMIT] in /trunk: opensaml-messaging-impl/pom.xml opensaml-messaging-impl/src/test/java/org/opensaml/...

noreply at shibboleth.net noreply at shibboleth.net
Mon Dec 16 11:02:18 EST 2013


Author: rdw
Date: Mon Dec 16 11:02:18 2013
New Revision: 3515

URL: http://svn.shibboleth.net/view/java-opensaml?rev=3515&view=rev
Log:
IDP-209 Move the ResourceBackedMetadataProvider to use new style ShibbolethResources.

Make some tests which used old style ClasspathResources as a short hand use Spring ClassPathResources, and thus add both spring-core and spring-extensions into the pom under TEST scope

Added:
    trunk/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/impl/package-info.java   (with props)
Modified:
    trunk/opensaml-messaging-impl/pom.xml
    trunk/opensaml-messaging-impl/src/test/java/org/opensaml/messaging/handler/impl/SchemaValidateXmlMessageTest.java
    trunk/opensaml-saml-impl/pom.xml
    trunk/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/impl/ResourceBackedMetadataResolver.java
    trunk/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/impl/package.html
    trunk/opensaml-saml-impl/src/test/java/org/opensaml/saml/metadata/resolver/impl/FilesystemMetadataResolverTest.java
    trunk/opensaml-saml-impl/src/test/java/org/opensaml/saml/metadata/resolver/impl/ResourceBackedMetadataResolverTest.java

Modified: trunk/opensaml-messaging-impl/pom.xml
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-messaging-impl/pom.xml?rev=3515&r1=3514&r2=3515&view=diff
==============================================================================
--- trunk/opensaml-messaging-impl/pom.xml (original)
+++ trunk/opensaml-messaging-impl/pom.xml Mon Dec 16 11:02:18 2013
@@ -1,51 +1,63 @@
 <?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/maven-v4_0_0.xsd">
+<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">
 
-    <modelVersion>4.0.0</modelVersion>
+	<modelVersion>4.0.0</modelVersion>
 
-    <parent>
-        <groupId>org.opensaml</groupId>
-        <artifactId>opensaml-parent</artifactId>
-        <version>3.0-SNAPSHOT</version>
-        <relativePath>../opensaml-parent</relativePath>
-    </parent>
+	<parent>
+		<groupId>org.opensaml</groupId>
+		<artifactId>opensaml-parent</artifactId>
+		<version>3.0-SNAPSHOT</version>
+		<relativePath>../opensaml-parent</relativePath>
+	</parent>
 
-    <name>OpenSAML :: Messaging Implementations</name>
-    <artifactId>opensaml-messaging-impl</artifactId>
-    <packaging>jar</packaging>
+	<name>OpenSAML :: Messaging Implementations</name>
+	<artifactId>opensaml-messaging-impl</artifactId>
+	<packaging>jar</packaging>
 
-    <dependencies>
-        <!-- Compile Dependencies -->
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>opensaml-messaging-api</artifactId>
-            <version>${project.version}</version>
-        </dependency>
+	<dependencies>
+		<!-- Compile Dependencies -->
+		<dependency>
+			<groupId>${project.groupId}</groupId>
+			<artifactId>opensaml-messaging-api</artifactId>
+			<version>${project.version}</version>
+		</dependency>
 
-        <!-- Provided Dependencies -->
-        <dependency>
-            <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-        </dependency>
+		<!-- Provided Dependencies -->
+		<dependency>
+			<groupId>javax.servlet</groupId>
+			<artifactId>servlet-api</artifactId>
+		</dependency>
 
-        <!-- Runtime Dependencies -->
+		<!-- Runtime Dependencies -->
 
-        <!-- Test Dependencies -->
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>opensaml-core</artifactId>
-            <version>${project.version}</version>
-            <type>test-jar</type>
-            <scope>test</scope>
-        </dependency>
-        
+		<!-- Test Dependencies -->
+		<dependency>
+			<groupId>${project.groupId}</groupId>
+			<artifactId>opensaml-core</artifactId>
+			<version>${project.version}</version>
+			<type>test-jar</type>
+			<scope>test</scope>
+		</dependency>
         <dependency>
             <groupId>${spring.groupId}</groupId>
-            <artifactId>spring-test</artifactId>
+            <artifactId>spring-core</artifactId>
             <scope>test</scope>
         </dependency>
 
-    </dependencies>
-    
+		<dependency>
+			<groupId>net.shibboleth.ext</groupId>
+			<artifactId>spring-extensions</artifactId>
+			<scope>test</scope>
+			<version>1.2-SNAPSHOT</version>
+		</dependency>
+
+		<dependency>
+			<groupId>${spring.groupId}</groupId>
+			<artifactId>spring-test</artifactId>
+			<scope>test</scope>
+		</dependency>
+
+	</dependencies>
+
 </project>

Modified: trunk/opensaml-messaging-impl/src/test/java/org/opensaml/messaging/handler/impl/SchemaValidateXmlMessageTest.java

[... 244 lines stripped ...]


More information about the commits mailing list