pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.springframework.security</groupId>
  5. <artifactId>spring-security-samples</artifactId>
  6. <version>2.0-SNAPSHOT</version>
  7. </parent>
  8. <groupId>org.springframework.security</groupId>
  9. <artifactId>spring-security-samples-cas-server</artifactId>
  10. <name>Spring Security - CAS Server for CAS Sample Application</name>
  11. <packaging>pom</packaging>
  12. <build>
  13. <plugins>
  14. <plugin>
  15. <groupId>org.mortbay.jetty</groupId>
  16. <artifactId>maven-jetty-plugin</artifactId>
  17. <version>6.1.7</version>
  18. <configuration>
  19. <contextPath>/cas</contextPath>
  20. <webApp>${basedir}/cas-server-webapp-3.2.war</webApp>
  21. <connectors>
  22. <connector implementation="org.mortbay.jetty.security.SslSocketConnector">
  23. <port>9443</port>
  24. <keystore>../../certificates/server.jks</keystore>
  25. <password>password</password>
  26. <keyPassword>password</keyPassword>
  27. <truststore>../../certificates/server.jks</truststore>
  28. <trustPassword>password</trustPassword>
  29. <wantClientAuth>true</wantClientAuth>
  30. <needClientAuth>false</needClientAuth>
  31. </connector>
  32. </connectors>
  33. </configuration>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. </project>