Browse Source

SEC-722: Fix jstl versions in openID sample login page.

2.0.x
Luke Taylor 18 years ago
parent
commit
69f2075872
  1. 8
      samples/openid/pom.xml
  2. 2
      samples/openid/src/main/webapp/openidlogin.jsp

8
samples/openid/pom.xml

@ -7,7 +7,7 @@ @@ -7,7 +7,7 @@
</parent>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-samples-openid</artifactId>
<name>Spring Security - openid sample</name>
<name>Spring Security - OpenID Sample</name>
<packaging>war</packaging>
<dependencies>
<dependency>
@ -42,21 +42,23 @@ @@ -42,21 +42,23 @@
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
<version>1.1.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.0.6</version>
<version>1.1.2</version>
<scope>runtime</scope>
</dependency>
<!--
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
<version>1.1.1</version>
<optional>true</optional>
</dependency>
-->
</dependencies>
<build>

2
samples/openid/src/main/webapp/openidlogin.jsp

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
<%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core' %>
<%@ taglib prefix='c' uri='http://java.sun.com/jstl/core_rt' %>
<%@ page import="org.springframework.security.ui.AbstractProcessingFilter" %>
<%@ page import="org.springframework.security.ui.webapp.AuthenticationProcessingFilter" %>
<%@ page import="org.springframework.security.AuthenticationException" %>

Loading…
Cancel
Save