pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. </dependency>
  37. <dependency>
  38. <groupId>org.springframework</groupId>
  39. <artifactId>spring</artifactId>
  40. <version>${spring.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework</groupId>
  44. <artifactId>spring-portlet</artifactId>
  45. <version>${spring.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework</groupId>
  49. <artifactId>spring-mock</artifactId>
  50. <version>${spring.version}</version>
  51. <scope>test</scope>
  52. </dependency>
  53. <!--
  54. <dependency>
  55. <groupId>org.apache.pluto</groupId>
  56. <artifactId>pluto-util</artifactId>
  57. <version>1.1.4</version>
  58. <scope>provided</scope>
  59. </dependency>
  60. -->
  61. <dependency>
  62. <groupId>javax.servlet</groupId>
  63. <artifactId>jstl</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>taglibs</groupId>
  67. <artifactId>standard</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.commons</groupId>
  71. <artifactId>commons-io</artifactId>
  72. <version>1.3.2</version>
  73. </dependency>
  74. </dependencies>
  75. <build>
  76. <plugins>
  77. <plugin>
  78. <groupId>org.apache.maven.plugins</groupId>
  79. <artifactId>maven-compiler-plugin</artifactId>
  80. <configuration>
  81. <source>1.5</source>
  82. <target>1.5</target>
  83. </configuration>
  84. </plugin>
  85. <!-- <plugin>
  86. <groupId>org.apache.pluto</groupId>
  87. <artifactId>maven-pluto-plugin</artifactId>
  88. <version>1.1.4</version>
  89. <executions>
  90. <execution>
  91. <phase>generate-resources</phase>
  92. <goals>
  93. <goal>assemble</goal>
  94. </goals>
  95. </execution>
  96. </executions>
  97. </plugin>
  98. <plugin>
  99. <artifactId>maven-war-plugin</artifactId>
  100. <configuration>
  101. <webXml>
  102. ${project.build.directory}/pluto-resources/web.xml
  103. </webXml>
  104. </configuration>
  105. </plugin>
  106. -->
  107. </plugins>
  108. </build>
  109. </project>