2008-01-28 11:03:28 -05:00
|
|
|
<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>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
2008-04-12 20:08:18 -04:00
|
|
|
<artifactId>spring-security-samples-cas</artifactId>
|
2008-06-03 12:05:40 -04:00
|
|
|
<version>2.0.2</version>
|
2008-01-28 11:03:28 -05:00
|
|
|
</parent>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-samples-cas-server</artifactId>
|
|
|
|
<name>Spring Security - CAS Server for CAS Sample Application</name>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>maven-jetty-plugin</artifactId>
|
|
|
|
<version>6.1.7</version>
|
|
|
|
<configuration>
|
|
|
|
<contextPath>/cas</contextPath>
|
2008-02-22 11:21:37 -05:00
|
|
|
<webApp>${basedir}/cas-server-webapp-3.2.war</webApp>
|
2008-01-28 11:03:28 -05:00
|
|
|
<connectors>
|
|
|
|
<connector implementation="org.mortbay.jetty.security.SslSocketConnector">
|
|
|
|
<port>9443</port>
|
|
|
|
<keystore>../../certificates/server.jks</keystore>
|
|
|
|
<password>password</password>
|
|
|
|
<keyPassword>password</keyPassword>
|
|
|
|
<truststore>../../certificates/server.jks</truststore>
|
|
|
|
<trustPassword>password</trustPassword>
|
|
|
|
<wantClientAuth>true</wantClientAuth>
|
|
|
|
<needClientAuth>false</needClientAuth>
|
|
|
|
</connector>
|
|
|
|
</connectors>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2008-04-12 20:08:18 -04:00
|
|
|
</project>
|