pom.xml 3.5 KB

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