pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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-parent</artifactId>
  6. <version>2.0.9.CI-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>spring-security-portlet</artifactId>
  9. <name>Spring Security - Portlet support</name>
  10. <description>Spring Security - Support for JSR 168 Portlets</description>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.springframework.security</groupId>
  14. <artifactId>spring-security-core</artifactId>
  15. <version>${project.version}</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.security</groupId>
  19. <artifactId>spring-security-core</artifactId>
  20. <version>${project.version}</version>
  21. <classifier>tests</classifier>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>javax.servlet</groupId>
  26. <artifactId>servlet-api</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>javax.portlet</groupId>
  30. <artifactId>portlet-api</artifactId>
  31. <version>1.0</version>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-dao</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-portlet</artifactId>
  41. <version>${spring.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework</groupId>
  45. <artifactId>spring-mock</artifactId>
  46. <version>${spring.version}</version>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>net.sf.ehcache</groupId>
  51. <artifactId>ehcache</artifactId>
  52. </dependency>
  53. </dependencies>
  54. </project>