I've been managing our cas server since about version 3.4.2 via maven
overlay. I just tried to go from 3.5.1, which worked fine, to 3.5.2 and
am getting the following errors when I try to deploy the war package.
Cannot find class [org.jasig.cas.web.NoSuchFlowExecutionExceptionResolver]
for bean with name 'errorHandlerResolver' defined in ServletContext
resource [/WEB-INF/cas-servlet.xml];
It seems like I need to call an additional dependency in my pom.xml file,
which currently has:
<dependencies>
<dependency>
<groupId>org.jasig.cas</groupId>
<artifactId>cas-server-webapp</artifactId>
<version>${cas.version}</version>
<type>war</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jasig.cas</groupId>
<artifactId>cas-server-support-ldap</artifactId>
<version>${cas.version}</version>
</dependency>
<dependency>
<groupId>org.opensymphony.quartz</groupId>
<artifactId>quartz</artifactId>
<version>1.6.1</version>
<type>jar</type>
</dependency>
</dependencies>
<properties>
<cas.version>3.5.2</cas.version>
</properties>
<repositories>
<repository>
<id>ja-sig</id>
<url>http://oss.sonatype.org/content/repositories/releases/</url>
</repository>
</repositories>
Can someone point me in the right direction?
--
You are currently subscribed to [email protected] as:
[email protected]
To unsubscribe, change settings or access archives, see
http://www.ja-sig.org/wiki/display/JSG/cas-user