pom.xml 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  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. <version.log4j>1.2.17</version.log4j>
  25. <version.log4j-over-slf4j>1.7.21</version.log4j-over-slf4j>
  26. <version.log4j2>2.4.1</version.log4j2>
  27. <version.jcl-over-slf4j>1.7.19</version.jcl-over-slf4j>
  28. <version.jul-over-slf4j>1.7.21</version.jul-over-slf4j>
  29. <version.slf4j>1.7.21</version.slf4j>
  30. </properties>
  31. <pluginRepositories>
  32. <pluginRepository>
  33. <id>pluginCentral</id>
  34. <name>pluginCentral</name>
  35. <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
  36. </pluginRepository>
  37. <pluginRepository>
  38. <id>pluginReleases</id>
  39. <name>pluginReleases</name>
  40. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  41. </pluginRepository>
  42. </pluginRepositories>
  43. <!--用于发布到服务器 对应setting的对应server表情里面的id -->
  44. <distributionManagement>
  45. <repository>
  46. <id>Releases</id>
  47. <name>Releases</name>
  48. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  49. </repository>
  50. <snapshotRepository>
  51. <id>snapshots</id>
  52. <name>Snapshots</name>
  53. <url>http://172.19.103.47:8081/nexus/content/repositories/snapshots/</url>
  54. </snapshotRepository>
  55. </distributionManagement>
  56. <repositories>
  57. <repository>
  58. <id>repositoryCentral</id>
  59. <name>repositoryCentral</name>
  60. <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
  61. </repository>
  62. <repository>
  63. <id>repositoryReleases</id>
  64. <name>repositoryReleases</name>
  65. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  66. </repository>
  67. </repositories>
  68. <dependencies>
  69. <!--zip start-->
  70. <dependency>
  71. <groupId>net.lingala.zip4j</groupId>
  72. <artifactId>zip4j</artifactId>
  73. <version>1.3.2</version>
  74. </dependency>
  75. <!--zip end-->
  76. <!--commons start-->
  77. <!--<dependency>-->
  78. <!--<groupId>commons-discovery</groupId>-->
  79. <!--<artifactId>commons-discovery</artifactId>-->
  80. <!--<version>0.2</version>-->
  81. <!--</dependency>-->
  82. <dependency>
  83. <groupId>org.apache.commons</groupId>
  84. <artifactId>commons-collections4</artifactId>
  85. <version>4.0</version>
  86. </dependency>
  87. <!--<dependency>-->
  88. <!--<groupId>commons-io</groupId>-->
  89. <!--<artifactId>commons-io</artifactId>-->
  90. <!--<version>2.4</version>-->
  91. <!--</dependency>-->
  92. <!--<dependency>-->
  93. <!--<groupId>org.apache.commons</groupId>-->
  94. <!--<artifactId>commons-dbcp2</artifactId>-->
  95. <!--<version>2.1</version>-->
  96. <!--</dependency>-->
  97. <!--<dependency>-->
  98. <!--<groupId>commons-codec</groupId>-->
  99. <!--<artifactId>commons-codec</artifactId>-->
  100. <!--<version>1.10</version>-->
  101. <!--</dependency>-->
  102. <!--<dependency>-->
  103. <!--<groupId>commons-configuration</groupId>-->
  104. <!--<artifactId>commons-configuration</artifactId>-->
  105. <!--<version>1.10</version>-->
  106. <!--</dependency>-->
  107. <!--<dependency>-->
  108. <!--<groupId>commons-dbutils</groupId>-->
  109. <!--<artifactId>commons-dbutils</artifactId>-->
  110. <!--<version>1.6</version>-->
  111. <!--</dependency>-->
  112. <dependency>
  113. <groupId>commons-fileupload</groupId>
  114. <artifactId>commons-fileupload</artifactId>
  115. <version>1.3.1</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.apache.commons</groupId>
  119. <artifactId>commons-lang3</artifactId>
  120. <version>3.3.2</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>commons-net</groupId>
  124. <artifactId>commons-net</artifactId>
  125. <version>3.3</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>commons-beanutils</groupId>
  129. <artifactId>commons-beanutils</artifactId>
  130. <version>1.9.2</version>
  131. </dependency>
  132. <!--commons end-->
  133. <dependency>
  134. <groupId>org.slf4j</groupId>
  135. <artifactId>slf4j-api</artifactId>
  136. <version>1.7.13</version>
  137. </dependency>
  138. <!--httpclient start-->
  139. <dependency>
  140. <groupId>org.apache.httpcomponents</groupId>
  141. <artifactId>httpclient</artifactId>
  142. <version>4.5.1</version>
  143. <exclusions>
  144. <exclusion>
  145. <groupId>commons-logging</groupId>
  146. <artifactId>commons-logging</artifactId>
  147. </exclusion>
  148. </exclusions>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.apache.httpcomponents</groupId>
  152. <artifactId>httpmime</artifactId>
  153. <version>4.5.1</version>
  154. </dependency>
  155. <!--httpclient end-->
  156. <!--pinyin4j start-->
  157. <dependency>
  158. <groupId>com.belerweb</groupId>
  159. <artifactId>pinyin4j</artifactId>
  160. <version>2.5.0</version>
  161. </dependency>
  162. <!--pinyin4j end-->
  163. <!--cxf start-->
  164. <dependency>
  165. <groupId>org.apache.cxf</groupId>
  166. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  167. <version>3.0.0</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.apache.cxf</groupId>
  171. <artifactId>cxf-rt-transports-http</artifactId>
  172. <version>3.0.0</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.apache.cxf</groupId>
  176. <artifactId>cxf-rt-bindings-soap</artifactId>
  177. <version>3.0.0</version>
  178. </dependency>
  179. <!--cxf end-->
  180. <!--log4j2 start-->
  181. <dependency>
  182. <groupId>org.apache.logging.log4j</groupId>
  183. <artifactId>log4j-core</artifactId>
  184. <version>2.4.1</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.apache.logging.log4j</groupId>
  188. <artifactId>log4j-api</artifactId>
  189. <version>2.4.1</version>
  190. </dependency>
  191. <!--log4j2 end-->
  192. <!--jackson start-->
  193. <dependency>
  194. <groupId>com.fasterxml.jackson.core</groupId>
  195. <artifactId>jackson-core</artifactId>
  196. <version>2.4.6</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>com.fasterxml.jackson.core</groupId>
  200. <artifactId>jackson-databind</artifactId>
  201. <version>2.4.6</version>
  202. </dependency>
  203. <!--jackson end-->
  204. <!-- Log framework start-->
  205. <dependency>
  206. <groupId>log4j</groupId>
  207. <artifactId>log4j</artifactId>
  208. <version>${version.log4j}</version>
  209. <scope>${dependency.scope}</scope>
  210. </dependency>
  211. <dependency>
  212. <groupId>org.apache.logging.log4j</groupId>
  213. <artifactId>log4j-api</artifactId>
  214. <version>${version.log4j2}</version>
  215. <scope>${dependency.scope}</scope>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.apache.logging.log4j</groupId>
  219. <artifactId>log4j-core</artifactId>
  220. <version>${version.log4j2}</version>
  221. <scope>${dependency.scope}</scope>
  222. </dependency>
  223. <!--Log framework to SLF4J bridge: x-over-slf4j-->
  224. <dependency>
  225. <groupId>org.slf4j</groupId>
  226. <artifactId>jcl-over-slf4j</artifactId>
  227. <version>${version.jcl-over-slf4j}</version>
  228. <scope>${dependency.scope}</scope>
  229. <exclusions>
  230. <exclusion>
  231. <groupId>org.slf4j</groupId>
  232. <artifactId>slf4j-jdk14</artifactId>
  233. </exclusion>
  234. </exclusions>
  235. </dependency>
  236. <dependency>
  237. <groupId>org.slf4j</groupId>
  238. <artifactId>jul-to-slf4j</artifactId>
  239. <version>${version.jul-over-slf4j}</version>
  240. <scope>${dependency.scope}</scope>
  241. <exclusions>
  242. <exclusion>
  243. <groupId>org.slf4j</groupId>
  244. <artifactId>slf4j-log4j12</artifactId>
  245. </exclusion>
  246. </exclusions>
  247. </dependency>
  248. <dependency>
  249. <groupId>org.slf4j</groupId>
  250. <artifactId>log4j-over-slf4j</artifactId>
  251. <version>${version.log4j-over-slf4j}</version>
  252. <scope>${dependency.scope}</scope>
  253. </dependency>
  254. <!--SLF4J api-->
  255. <dependency>
  256. <groupId>org.slf4j</groupId>
  257. <artifactId>slf4j-api</artifactId>
  258. <version>${version.slf4j}</version>
  259. <scope>${dependency.scope}</scope>
  260. </dependency>
  261. <!-- Log framework end-->
  262. </dependencies>
  263. </project>