pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.yihu.hos</groupId>
  7. <artifactId>hos-core-dependencies</artifactId>
  8. <version>1.1.1-SNAPSHOT</version>
  9. <packaging>pom</packaging>
  10. <build>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <configuration>
  16. <source>1.8</source>
  17. <target>1.8</target>
  18. </configuration>
  19. </plugin>
  20. </plugins>
  21. </build>
  22. <properties>
  23. <!--<jackson.version>2.4.6</jackson.version>-->
  24. <log4j.version>1.2.17</log4j.version>
  25. <log4j2.version>2.4.1</log4j2.version>
  26. <slf4j.version>1.7.21</slf4j.version>
  27. </properties>
  28. <pluginRepositories>
  29. <pluginRepository>
  30. <id>pluginCentral</id>
  31. <name>pluginCentral</name>
  32. <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
  33. </pluginRepository>
  34. <pluginRepository>
  35. <id>pluginReleases</id>
  36. <name>pluginReleases</name>
  37. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  38. </pluginRepository>
  39. </pluginRepositories>
  40. <!--用于发布到服务器 对应setting的对应server表情里面的id -->
  41. <distributionManagement>
  42. <repository>
  43. <id>Releases</id>
  44. <name>Releases</name>
  45. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  46. </repository>
  47. <snapshotRepository>
  48. <id>snapshots</id>
  49. <name>Snapshots</name>
  50. <url>http://172.19.103.47:8081/nexus/content/repositories/snapshots/</url>
  51. </snapshotRepository>
  52. </distributionManagement>
  53. <repositories>
  54. <repository>
  55. <id>repositoryCentral</id>
  56. <name>repositoryCentral</name>
  57. <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
  58. </repository>
  59. <repository>
  60. <id>repositoryReleases</id>
  61. <name>repositoryReleases</name>
  62. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  63. </repository>
  64. </repositories>
  65. <dependencies>
  66. <!--zip start-->
  67. <dependency>
  68. <groupId>net.lingala.zip4j</groupId>
  69. <artifactId>zip4j</artifactId>
  70. <version>1.3.2</version>
  71. </dependency>
  72. <!--zip end-->
  73. <!--commons start-->
  74. <dependency>
  75. <groupId>org.apache.commons</groupId>
  76. <artifactId>commons-collections4</artifactId>
  77. <version>4.0</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>commons-fileupload</groupId>
  81. <artifactId>commons-fileupload</artifactId>
  82. <version>1.3.1</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.commons</groupId>
  86. <artifactId>commons-lang3</artifactId>
  87. <version>3.3.2</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>commons-net</groupId>
  91. <artifactId>commons-net</artifactId>
  92. <version>3.3</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>commons-beanutils</groupId>
  96. <artifactId>commons-beanutils</artifactId>
  97. <version>1.9.2</version>
  98. </dependency>
  99. <!--commons end-->
  100. <!--httpclient start-->
  101. <dependency>
  102. <groupId>org.apache.httpcomponents</groupId>
  103. <artifactId>httpclient</artifactId>
  104. <version>4.5.1</version>
  105. <exclusions>
  106. <exclusion>
  107. <groupId>commons-logging</groupId>
  108. <artifactId>commons-logging</artifactId>
  109. </exclusion>
  110. </exclusions>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.httpcomponents</groupId>
  114. <artifactId>httpmime</artifactId>
  115. <version>4.5.1</version>
  116. </dependency>
  117. <!--httpclient end-->
  118. <!--pinyin4j start-->
  119. <dependency>
  120. <groupId>com.belerweb</groupId>
  121. <artifactId>pinyin4j</artifactId>
  122. <version>2.5.0</version>
  123. </dependency>
  124. <!--pinyin4j end-->
  125. <!--cxf start-->
  126. <dependency>
  127. <groupId>org.apache.cxf</groupId>
  128. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  129. <version>3.0.0</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.apache.cxf</groupId>
  133. <artifactId>cxf-rt-transports-http</artifactId>
  134. <version>3.0.0</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.apache.cxf</groupId>
  138. <artifactId>cxf-rt-bindings-soap</artifactId>
  139. <version>3.0.0</version>
  140. </dependency>
  141. <!--cxf end-->
  142. <!--jackson start-->
  143. <dependency>
  144. <groupId>com.fasterxml.jackson.core</groupId>
  145. <artifactId>jackson-core</artifactId>
  146. <version>2.4.6</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.fasterxml.jackson.core</groupId>
  150. <artifactId>jackson-databind</artifactId>
  151. <version>2.4.6</version>
  152. </dependency>
  153. <!--jackson end-->
  154. <!-- Log framework start-->
  155. <dependency>
  156. <groupId>log4j</groupId>
  157. <artifactId>log4j</artifactId>
  158. <version>${log4j.version}</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.apache.logging.log4j</groupId>
  162. <artifactId>log4j-api</artifactId>
  163. <version>${log4j2.version}</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.apache.logging.log4j</groupId>
  167. <artifactId>log4j-core</artifactId>
  168. <version>${log4j2.version}</version>
  169. </dependency>
  170. <!--SLF4J api-->
  171. <dependency>
  172. <groupId>org.slf4j</groupId>
  173. <artifactId>slf4j-api</artifactId>
  174. <version>${slf4j.version}</version>
  175. </dependency>
  176. </dependencies>
  177. </project>