pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.4-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. <version>2.0.4-SNAPSHOT</version>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.security</groupId>
  15. <artifactId>spring-security-core</artifactId>
  16. <version>2.0.4-SNAPSHOT</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>javax.servlet</groupId>
  20. <artifactId>servlet-api</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>javax.portlet</groupId>
  24. <artifactId>portlet-api</artifactId>
  25. <version>1.0</version>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-dao</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-portlet</artifactId>
  35. <version>${spring.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework</groupId>
  39. <artifactId>spring-mock</artifactId>
  40. <version>${spring.version}</version>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>net.sf.ehcache</groupId>
  45. <artifactId>ehcache</artifactId>
  46. </dependency>
  47. </dependencies>
  48. </project>