pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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.4-SNAPSHOT</version>
  7. </parent>
  8. <groupId>org.springframework.security</groupId>
  9. <artifactId>spring-security-samples-portlet</artifactId>
  10. <name>Spring Security - Portlet Sample</name>
  11. <packaging>war</packaging>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.security</groupId>
  15. <artifactId>spring-security-core</artifactId>
  16. <version>${project.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.security</groupId>
  20. <artifactId>spring-security-portlet</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>portlet-api</groupId>
  25. <artifactId>portlet-api</artifactId>
  26. <version>1.0</version>
  27. <scope>provided</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>javax.servlet</groupId>
  31. <artifactId>servlet-api</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework</groupId>
  35. <artifactId>spring</artifactId>
  36. <version>${spring.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-portlet</artifactId>
  41. <version>2.0.8</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. <!--
  50. <dependency>
  51. <groupId>org.apache.pluto</groupId>
  52. <artifactId>pluto-util</artifactId>
  53. <version>1.1.4</version>
  54. <scope>provided</scope>
  55. </dependency>
  56. -->
  57. <dependency>
  58. <groupId>javax.servlet</groupId>
  59. <artifactId>jstl</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>taglibs</groupId>
  63. <artifactId>standard</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.commons</groupId>
  67. <artifactId>commons-io</artifactId>
  68. <version>1.3.2</version>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-compiler-plugin</artifactId>
  76. <configuration>
  77. <source>1.5</source>
  78. <target>1.5</target>
  79. </configuration>
  80. </plugin>
  81. <!-- <plugin>
  82. <groupId>org.apache.pluto</groupId>
  83. <artifactId>maven-pluto-plugin</artifactId>
  84. <version>1.1.4</version>
  85. <executions>
  86. <execution>
  87. <phase>generate-resources</phase>
  88. <goals>
  89. <goal>assemble</goal>
  90. </goals>
  91. </execution>
  92. </executions>
  93. </plugin>
  94. <plugin>
  95. <artifactId>maven-war-plugin</artifactId>
  96. <configuration>
  97. <webXml>
  98. ${project.build.directory}/pluto-resources/web.xml
  99. </webXml>
  100. </configuration>
  101. </plugin>
  102. -->
  103. </plugins>
  104. </build>
  105. </project>