pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  5. http://maven.apache.org/maven-v4_0_0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>org.springframework.security</groupId>
  9. <artifactId>spring-security-samples</artifactId>
  10. <version>2.0-SNAPSHOT</version>
  11. </parent>
  12. <groupId>org.springframework.security</groupId>
  13. <artifactId>spring-security-samples-portlet</artifactId>
  14. <name>Spring Security - Portlet Sample</name>
  15. <packaging>war</packaging>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.security</groupId>
  19. <artifactId>spring-security-core</artifactId>
  20. <version>${project.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.security</groupId>
  24. <artifactId>spring-security-portlet</artifactId>
  25. <version>${project.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>portlet-api</groupId>
  29. <artifactId>portlet-api</artifactId>
  30. <version>1.0</version>
  31. <scope>provided</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>javax.servlet</groupId>
  35. <artifactId>servlet-api</artifactId>
  36. <version>2.4</version>
  37. <scope>provided</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework</groupId>
  41. <artifactId>spring</artifactId>
  42. <version>${spring.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework</groupId>
  46. <artifactId>spring-portlet</artifactId>
  47. <version>${spring.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework</groupId>
  51. <artifactId>spring-mock</artifactId>
  52. <version>${spring.version}</version>
  53. <scope>test</scope>
  54. </dependency>
  55. <!--
  56. <dependency>
  57. <groupId>org.apache.pluto</groupId>
  58. <artifactId>pluto-util</artifactId>
  59. <version>1.1.4</version>
  60. <scope>provided</scope>
  61. </dependency>
  62. -->
  63. <dependency>
  64. <groupId>javax.servlet</groupId>
  65. <artifactId>jstl</artifactId>
  66. <version>${jstl.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>taglibs</groupId>
  70. <artifactId>standard</artifactId>
  71. <version>${jstl.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.commons</groupId>
  75. <artifactId>commons-io</artifactId>
  76. <version>1.3.2</version>
  77. </dependency>
  78. </dependencies>
  79. <build>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-compiler-plugin</artifactId>
  84. <configuration>
  85. <source>1.5</source>
  86. <target>1.5</target>
  87. </configuration>
  88. </plugin>
  89. <!-- <plugin>
  90. <groupId>org.apache.pluto</groupId>
  91. <artifactId>maven-pluto-plugin</artifactId>
  92. <version>1.1.4</version>
  93. <executions>
  94. <execution>
  95. <phase>generate-resources</phase>
  96. <goals>
  97. <goal>assemble</goal>
  98. </goals>
  99. </execution>
  100. </executions>
  101. </plugin>
  102. <plugin>
  103. <artifactId>maven-war-plugin</artifactId>
  104. <configuration>
  105. <webXml>
  106. ${project.build.directory}/pluto-resources/web.xml
  107. </webXml>
  108. </configuration>
  109. </plugin>
  110. -->
  111. </plugins>
  112. </build>
  113. </project>