|
@@ -1,101 +0,0 @@
|
|
|
-<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>
|
|
|
- <artifactId>spring-security-samples-cas</artifactId>
|
|
|
- <version>3.1.0.CI-SNAPSHOT</version>
|
|
|
- </parent>
|
|
|
- <groupId>org.springframework.security</groupId>
|
|
|
- <artifactId>spring-security-samples-cas-client</artifactId>
|
|
|
- <name>Spring Security - CAS Sample Client Web Application</name>
|
|
|
- <packaging>war</packaging>
|
|
|
- <dependencies>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.security</groupId>
|
|
|
- <artifactId>spring-security-core</artifactId>
|
|
|
- <version>${project.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.security</groupId>
|
|
|
- <artifactId>spring-security-config</artifactId>
|
|
|
- <version>${project.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.security</groupId>
|
|
|
- <artifactId>spring-security-cas-client</artifactId>
|
|
|
- <version>${project.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
- <artifactId>spring-web</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
- <artifactId>spring-webmvc</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
- <artifactId>spring-jdbc</artifactId>
|
|
|
- <scope>runtime</scope>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
- <artifactId>spring-aop</artifactId>
|
|
|
- <scope>runtime</scope>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>org.slf4j</groupId>
|
|
|
- <artifactId>slf4j-log4j12</artifactId>
|
|
|
- <version>1.4.3</version>
|
|
|
- <scope>runtime</scope>
|
|
|
- <optional>true</optional>
|
|
|
- </dependency>
|
|
|
- </dependencies>
|
|
|
-
|
|
|
- <build>
|
|
|
- <plugins>
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-compiler-plugin</artifactId>
|
|
|
- <configuration>
|
|
|
- <source>1.5</source>
|
|
|
- <target>1.5</target>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
- <plugin>
|
|
|
- <groupId>org.mortbay.jetty</groupId>
|
|
|
- <artifactId>maven-jetty-plugin</artifactId>
|
|
|
- <version>${jetty.version}</version>
|
|
|
- <configuration>
|
|
|
- <contextPath>/cas-sample</contextPath>
|
|
|
- <connectors>
|
|
|
- <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
|
|
|
- <port>8080</port>
|
|
|
- <confidentialPort>8443</confidentialPort>
|
|
|
- </connector>
|
|
|
- <connector implementation="org.mortbay.jetty.security.SslSocketConnector">
|
|
|
- <port>8443</port>
|
|
|
- <keystore>../../certificates/server.jks</keystore>
|
|
|
- <password>password</password>
|
|
|
- <keyPassword>password</keyPassword>
|
|
|
- <truststore>../../certificates/server.jks</truststore>
|
|
|
- <trustPassword>password</trustPassword>
|
|
|
- </connector>
|
|
|
- </connectors>
|
|
|
- <systemProperties>
|
|
|
- <systemProperty>
|
|
|
- <name>javax.net.ssl.trustStore</name>
|
|
|
- <value>../../certificates/server.jks</value>
|
|
|
- </systemProperty>
|
|
|
- <systemProperty>
|
|
|
- <name>javax.net.ssl.trustStorePassword</name>
|
|
|
- <value>password</value>
|
|
|
- </systemProperty>
|
|
|
- </systemProperties>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
- </plugins>
|
|
|
- </build>
|
|
|
-
|
|
|
-</project>
|