Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.78 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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/xsd/maven-4.0.0.xsd">
  3.  
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.pgac</groupId>
  7. <artifactId>pgac-webapp-parent</artifactId>
  8. <version>1.2</version>
  9. </parent>
  10.  
  11. <artifactId>PushNotificationService</artifactId>
  12. <version>16.1-SNAPSHOT</version>
  13. <packaging>war</packaging>
  14.  
  15. <scm>
  16. <connection>${pgac.scm.git}/${project.artifactId}.git</connection>
  17. <developerConnection>${pgac.scm.git}/${project.artifactId}.git</developerConnection>
  18. <url>${pgac.scm.git.url}/${project.artifactId}</url>
  19. <tag>HEAD</tag>
  20. </scm>
  21.  
  22. <properties>
  23. <version.cxf>2.7.14</version.cxf>
  24. </properties>
  25.  
  26. <dependencies>
  27. <dependency>
  28. <groupId>com.pgac</groupId>
  29. <artifactId>pgac-commons</artifactId>
  30. <version>1.0.10</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>commons-jxpath</groupId>
  34. <artifactId>commons-jxpath</artifactId>
  35. <version>1.3</version>
  36. </dependency>
  37.  
  38. <dependency>
  39. <groupId>com.pgac</groupId>
  40. <artifactId>PGACEmailUtil</artifactId>
  41. <version>1.0</version>
  42. </dependency>
  43.  
  44. <dependency>
  45. <groupId>org.mybatis</groupId>
  46. <artifactId>mybatis</artifactId>
  47. <version>3.2.5</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.mybatis</groupId>
  51. <artifactId>mybatis-spring</artifactId>
  52. <version>1.2.2</version>
  53. </dependency>
  54.  
  55. <dependency>
  56. <groupId>org.scala-lang</groupId>
  57. <artifactId>scala-library</artifactId>
  58. <version>2.10.4</version>
  59. </dependency>
  60.  
  61. <dependency>
  62. <groupId>com.sun.mail</groupId>
  63. <artifactId>javax.mail</artifactId>
  64. <version>1.5.2</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.neo4j</groupId>
  68. <artifactId>neo4j-cypher-compiler-2.1</artifactId>
  69. <version>2.1.2</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.commons</groupId>
  73. <artifactId>commons-collections4</artifactId>
  74. <version>4.0</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.commons</groupId>
  78. <artifactId>commons-lang3</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.google.code.gson</groupId>
  82. <artifactId>gson</artifactId>
  83. <version>2.3.1</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.notnoop.apns</groupId>
  87. <artifactId>apns</artifactId>
  88. <version>1.0.0.Beta6</version>
  89. </dependency>
  90.  
  91. <dependency>
  92. <groupId>com.pgac</groupId>
  93. <artifactId>pgx-cryptor</artifactId>
  94. <version>1.0.1-SNAPSHOT</version>
  95. </dependency>
  96.  
  97. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
  98. <dependency>
  99. <groupId>org.apache.commons</groupId>
  100. <artifactId>commons-collections4</artifactId>
  101. <version>4.1</version>
  102. </dependency>
  103.  
  104. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  105. <dependency>
  106. <groupId>org.apache.commons</groupId>
  107. <artifactId>commons-lang3</artifactId>
  108. <version>3.7</version>
  109. </dependency>
  110.  
  111. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  112. <dependency>
  113. <groupId>org.apache.httpcomponents</groupId>
  114. <artifactId>httpclient</artifactId>
  115. <version>4.5.4</version>
  116. </dependency>
  117.  
  118. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  119. <dependency>
  120. <groupId>commons-codec</groupId>
  121. <artifactId>commons-codec</artifactId>
  122. <version>1.11</version>
  123. </dependency>
  124.  
  125.  
  126. <dependency>
  127. <groupId>org.spockframework</groupId>
  128. <artifactId>spock-core</artifactId>
  129. <version>1.0-groovy-2.4</version>
  130. <scope>test</scope>
  131. </dependency>
  132. <dependency>
  133. <groupId>junit</groupId>
  134. <artifactId>junit</artifactId>
  135. <version>4.12</version>
  136. <scope>test</scope>
  137. </dependency>
  138. </dependencies>
  139.  
  140. <build>
  141. <pluginManagement>
  142. <plugins>
  143. <plugin>
  144. <groupId>org.eclipse.m2e</groupId>
  145. <artifactId>lifecycle-mapping</artifactId>
  146. <version>1.0.0</version>
  147. <configuration>
  148. <lifecycleMappingMetadata>
  149. <pluginExecutions>
  150. <pluginExecution>
  151. <pluginExecutionFilter>
  152. <groupId>org.apache.cxf</groupId>
  153. <artifactId>cxf-java2ws-plugin</artifactId>
  154. <versionRange>[2.7.14,)</versionRange>
  155. <goals>
  156. <goal>java2ws</goal>
  157. </goals>
  158. </pluginExecutionFilter>
  159. <action>
  160. <ignore />
  161. </action>
  162. </pluginExecution>
  163. </pluginExecutions>
  164. </lifecycleMappingMetadata>
  165. </configuration>
  166. </plugin>
  167. </plugins>
  168. </pluginManagement>
  169.  
  170. <plugins>
  171. <plugin>
  172. <groupId>org.apache.cxf</groupId>
  173. <artifactId>cxf-java2ws-plugin</artifactId>
  174. <version>${version.cxf}</version>
  175. <dependencies>
  176. <dependency>
  177. <groupId>org.apache.cxf</groupId>
  178. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  179. <version>${version.cxf}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.apache.cxf</groupId>
  183. <artifactId>cxf-rt-frontend-simple</artifactId>
  184. <version>${version.cxf}</version>
  185. </dependency>
  186. </dependencies>
  187.  
  188. <executions>
  189. <execution>
  190. <id>process-classes</id>
  191. <phase>process-classes</phase>
  192. <goals>
  193. <goal>java2ws</goal>
  194. </goals>
  195. </execution>
  196. </executions>
  197. <configuration>
  198. <className>com.pgac.pushNotification.webservice.service.impl.PushNotificationServiceImpl</className>
  199. <className>com.pgac.pushNotification.webservice.service.impl.PushNotificationRegistrationServiceImpl</className>
  200. <genWsdl>true</genWsdl>
  201. <verbose>true</verbose>
  202. </configuration>
  203. </plugin>
  204. </plugins>
  205. </build>
  206.  
  207. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement