pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  2. <parent>
  3. <groupId>org.pwm-project</groupId>
  4. <artifactId>pwm-parent</artifactId>
  5. <version>1.8.0-SNAPSHOT</version>
  6. <relativePath>../pom.xml</relativePath>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>pwm-data-service</artifactId>
  10. <packaging>war</packaging>
  11. <name>PWM Password Self Service: Data Service</name>
  12. <licenses>
  13. <license>
  14. <name>The GNU General Public License (GPL) Version 2</name>
  15. <url>http://www.gnu.org/licenses/gpl-2.0.html</url>
  16. <distribution>repo</distribution>
  17. </license>
  18. </licenses>
  19. <organization>
  20. <name>PWM Project</name>
  21. <url>http://www.pwm-project.org</url>
  22. </organization>
  23. <properties>
  24. <skipTests>false</skipTests>
  25. <timestamp.iso>${maven.build.timestamp}</timestamp.iso>
  26. <maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss'Z'</maven.build.timestamp.format>
  27. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  28. <project.root.basedir>${project.basedir}/..</project.root.basedir>
  29. </properties>
  30. <profiles>
  31. </profiles>
  32. <build>
  33. <plugins>
  34. <plugin>
  35. <!-- This plugin will set properties values using dependency information -->
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-dependency-plugin</artifactId>
  38. <executions>
  39. <execution>
  40. <goals>
  41. <goal>properties</goal>
  42. </goals>
  43. </execution>
  44. </executions>
  45. </plugin>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-war-plugin</artifactId>
  49. <version>3.2.2</version>
  50. <configuration>
  51. <archiveClasses>true</archiveClasses>
  52. <packagingExcludes>WEB-INF/classes</packagingExcludes>
  53. <archive>
  54. <manifestEntries>
  55. <Implementation-Title>${project.name}</Implementation-Title>
  56. <Implementation-Version>${project.version}</Implementation-Version>
  57. <Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
  58. <Implementation-URL>${project.organization.url}</Implementation-URL>
  59. <Implementation-Build>${build.number}</Implementation-Build>
  60. <Implementation-Revision>${build.revision}</Implementation-Revision>
  61. <Implementation-Version-Display>v${project.version} b${build.number} r${build.revision}</Implementation-Version-Display>
  62. </manifestEntries>
  63. </archive>
  64. </configuration>
  65. </plugin>
  66. <plugin>
  67. <artifactId>maven-resources-plugin</artifactId>
  68. <version>3.1.0</version>
  69. <executions>
  70. <execution>
  71. <id>copy-resources</id>
  72. <phase>validate</phase>
  73. <goals>
  74. <goal>copy-resources</goal>
  75. </goals>
  76. <configuration>
  77. <outputDirectory>${project.build.outputDirectory}/src</outputDirectory>
  78. <resources>
  79. <resource><directory>src/main/java</directory></resource>
  80. <resource><directory>src/main/resources</directory></resource>
  81. </resources>
  82. </configuration>
  83. </execution>
  84. </executions>
  85. </plugin>
  86. <plugin>
  87. <artifactId>maven-clean-plugin</artifactId>
  88. <version>3.1.0</version>
  89. </plugin>
  90. </plugins>
  91. </build>
  92. <reporting>
  93. </reporting>
  94. <dependencies>
  95. <dependency>
  96. <groupId>${project.groupId}</groupId>
  97. <artifactId>pwm-server</artifactId>
  98. <version>${project.version}</version>
  99. <type>jar</type>
  100. </dependency>
  101. <!-- container dependencies -->
  102. <dependency>
  103. <groupId>javax.servlet</groupId>
  104. <artifactId>javax.servlet-api</artifactId>
  105. <version>4.0.1</version>
  106. <scope>provided</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>javax.servlet.jsp</groupId>
  110. <artifactId>jsp-api</artifactId>
  111. <version>2.2.1-b03</version>
  112. <scope>provided</scope>
  113. </dependency>
  114. <!-- / container dependencies -->
  115. <dependency>
  116. <groupId>commons-net</groupId>
  117. <artifactId>commons-net</artifactId>
  118. <version>3.6</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.apache.commons</groupId>
  122. <artifactId>commons-csv</artifactId>
  123. <version>1.6</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.commons</groupId>
  127. <artifactId>commons-lang3</artifactId>
  128. <version>3.8.1</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.sun.mail</groupId>
  132. <artifactId>javax.mail</artifactId>
  133. <version>1.6.2</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.apache.httpcomponents</groupId>
  137. <artifactId>httpclient</artifactId>
  138. <version>4.5.6</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>log4j</groupId>
  142. <artifactId>log4j</artifactId>
  143. <version>1.2.17</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.jdom</groupId>
  147. <artifactId>jdom2</artifactId>
  148. <version>2.0.6</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>com.google.code.gson</groupId>
  152. <artifactId>gson</artifactId>
  153. <version>2.8.5</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.jetbrains.xodus</groupId>
  157. <artifactId>xodus-environment</artifactId>
  158. <version>1.2.3</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.webjars</groupId>
  162. <artifactId>webjars-locator-core</artifactId>
  163. <version>0.35</version>
  164. </dependency>
  165. </dependencies>
  166. </project>