pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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-cas</artifactId>
  6. <version>2.0-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>spring-security-cas-adapter</artifactId>
  9. <name>Spring Security - CAS Adapter</name>
  10. <build>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <version>2.0.2</version>
  16. <configuration>
  17. <source>1.5</source>
  18. <target>1.5</target>
  19. </configuration>
  20. </plugin>
  21. </plugins>
  22. </build>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.jasig.cas</groupId>
  26. <artifactId>cas-server-core</artifactId>
  27. <version>3.2</version>
  28. <exclusions>
  29. <exclusion>
  30. <groupId>org.jasig.service</groupId>
  31. <artifactId>person-directory</artifactId>
  32. </exclusion>
  33. <exclusion>
  34. <groupId>jdom</groupId>
  35. <artifactId>jdom</artifactId>
  36. </exclusion>
  37. <exclusion>
  38. <groupId>org.springframework</groupId>
  39. <artifactId>spring-orm</artifactId>
  40. </exclusion>
  41. <exclusion>
  42. <groupId>org.apache.santuario</groupId>
  43. <artifactId>xmlsec</artifactId>
  44. </exclusion>
  45. <exclusion>
  46. <groupId>commons-codec</groupId>
  47. <artifactId>commons-codec</artifactId>
  48. </exclusion>
  49. <exclusion>
  50. <groupId>commons-collections</groupId>
  51. <artifactId>commons-collections</artifactId>
  52. </exclusion>
  53. <exclusion>
  54. <groupId>org.opensaml</groupId>
  55. <artifactId>opensaml</artifactId>
  56. </exclusion>
  57. <exclusion>
  58. <groupId>javax.persistence</groupId>
  59. <artifactId>persistence-api</artifactId>
  60. </exclusion>
  61. <exclusion>
  62. <groupId>javax.xml</groupId>
  63. <artifactId>xmldsig</artifactId>
  64. </exclusion>
  65. <exclusion>
  66. <groupId>commons-lang</groupId>
  67. <artifactId>commons-lang</artifactId>
  68. </exclusion>
  69. <exclusion>
  70. <groupId>org.springframework</groupId>
  71. <artifactId>spring-webmvc</artifactId>
  72. </exclusion>
  73. <exclusion>
  74. <groupId>net.sf.ehcache</groupId>
  75. <artifactId>ehcache</artifactId>
  76. </exclusion>
  77. <exclusion>
  78. <groupId>org.springframework</groupId>
  79. <artifactId>spring-webflow</artifactId>
  80. </exclusion>
  81. <exclusion>
  82. <groupId>org.springframework.ldap</groupId>
  83. <artifactId>spring-ldap</artifactId>
  84. </exclusion>
  85. <exclusion>
  86. <groupId>org.springframework.ldap</groupId>
  87. <artifactId>spring-ldap-tiger</artifactId>
  88. </exclusion>
  89. </exclusions>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework</groupId>
  93. <artifactId>spring-mock</artifactId>
  94. <scope>test</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework</groupId>
  98. <artifactId>spring-jdbc</artifactId>
  99. <scope>test</scope>
  100. </dependency>
  101. </dependencies>
  102. <repositories>
  103. <repository>
  104. <id>jasig-m2</id>
  105. <name>jasig-m2</name>
  106. <url>http://developer.ja-sig.org/maven2</url>
  107. </repository>
  108. </repositories>
  109. </project>