[utilities COMMIT] in /spring-extensions/trunk: pom.xml src/main/java/net/shibboleth/ext/spring/error/ src/main/java/...

noreply at shibboleth.net noreply at shibboleth.net
Mon Jun 9 14:10:34 EDT 2014


Author: scantor
Date: Mon Jun  9 14:10:34 2014
New Revision: 595

URL: http://svn.shibboleth.net/view/utilities?rev=595&view=rev
Log:
Add an extended MVC exception resolver we can decorate the views for.

Added:
    spring-extensions/trunk/src/main/java/net/shibboleth/ext/spring/error/
    spring-extensions/trunk/src/main/java/net/shibboleth/ext/spring/error/ExtendedMappingExceptionResolver.java   (with props)
    spring-extensions/trunk/src/main/java/net/shibboleth/ext/spring/error/package-info.java   (with props)
Modified:
    spring-extensions/trunk/pom.xml

Modified: spring-extensions/trunk/pom.xml
URL: http://svn.shibboleth.net/view/utilities/spring-extensions/trunk/pom.xml?rev=595&r1=594&r2=595&view=diff
==============================================================================
--- spring-extensions/trunk/pom.xml (original)
+++ spring-extensions/trunk/pom.xml Mon Jun  9 14:10:34 2014
@@ -89,6 +89,12 @@
             <optional>true</optional>
         </dependency>
         <dependency>
+            <groupId>${spring.groupId}</groupId>
+            <artifactId>spring-webmvc</artifactId>
+            <!-- Required for error handling classes. -->
+            <optional>true</optional>
+        </dependency>
+        <dependency>
             <groupId>joda-time</groupId>
             <artifactId>joda-time</artifactId>
         </dependency>
@@ -100,6 +106,13 @@
         </dependency>
 
         <!-- Provided dependencies -->
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>javax.servlet-api</artifactId>
+            <scope>provided</scope>
+            <!-- Required for error handling classes. -->
+            <optional>true</optional>
+        </dependency>
 
         <!-- Runtime dependencies -->
 



More information about the commits mailing list