pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.acegisecurity</groupId>
  6. <artifactId>acegi-security-sandbox</artifactId>
  7. <version>1.0.6-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>acegi-security-portlet</artifactId>
  10. <name>Acegi Security System for Spring - Portlet support</name>
  11. <description>Acegi Security System for Spring - Support for JSR 168 Portlets</description>
  12. <version>0.1-SNAPSHOT</version>
  13. <repositories>
  14. <repository>
  15. <id>AcegiMaven</id>
  16. <name>Acegi 3rd party repository</name>
  17. <url>http://acegisecurity.sourceforge.net/maven</url>
  18. <releases>
  19. <enabled>true</enabled>
  20. </releases>
  21. </repository>
  22. </repositories>
  23. <scm>
  24. <connection>scm:svn:https://svn.sourceforge.net/svnroot/acegisecurity/trunk/acegisecurity/sandbox/portlet
  25. </connection>
  26. <developerConnection>
  27. scm:svn:https://svn.sourceforge.net/svnroot/acegisecurity/trunk/acegisecurity/sandbox/portlet
  28. </developerConnection>
  29. <url>http://svn.sourceforge.net/viewcvs.cgi/acegisecurity/trunk/acegisecurity/sandbox/portlet/</url>
  30. </scm>
  31. <dependencies>
  32. <dependency>
  33. <groupId>javax.servlet</groupId>
  34. <artifactId>servlet-api</artifactId>
  35. <version>2.4</version>
  36. <scope>provided</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>javax.portlet</groupId>
  40. <artifactId>portlet-api</artifactId>
  41. <version>1.0</version>
  42. <scope>provided</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework</groupId>
  46. <artifactId>spring-dao</artifactId>
  47. <version>2.0.4</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework</groupId>
  51. <artifactId>spring-portlet</artifactId>
  52. <version>2.0.4</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework</groupId>
  56. <artifactId>spring-mock</artifactId>
  57. <version>2.0.4</version>
  58. <optional>true</optional>
  59. </dependency>
  60. <dependency>
  61. <groupId>net.sf.ehcache</groupId>
  62. <artifactId>ehcache</artifactId>
  63. <version>1.2.4</version>
  64. </dependency>
  65. </dependencies>
  66. </project>