pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.shiku</groupId>
  6. <artifactId>mianshi-parent</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>mianshi-service</artifactId>
  10. <name>mianshi-service</name>
  11. <description>mianshi-service</description>
  12. <dependencies>
  13. <!-- -->
  14. <dependency>
  15. <groupId>junit</groupId>
  16. <artifactId>junit</artifactId>
  17. <scope>test</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework</groupId>
  21. <artifactId>spring-test</artifactId>
  22. <scope>test</scope>
  23. </dependency>
  24. <!-- -->
  25. <dependency>
  26. <groupId>org.springframework</groupId>
  27. <artifactId>spring-jdbc</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>redis.clients</groupId>
  31. <artifactId>jedis</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.mongodb.morphia</groupId>
  35. <artifactId>morphia</artifactId>
  36. <version>0.108</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>mysql</groupId>
  40. <artifactId>mysql-connector-java</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.mybatis</groupId>
  44. <artifactId>mybatis</artifactId>
  45. <version>3.2.7</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.mybatis</groupId>
  49. <artifactId>mybatis-spring</artifactId>
  50. <version>1.2.2</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.alibaba</groupId>
  54. <artifactId>fastjson</artifactId>
  55. <version>1.1.41</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.google.guava</groupId>
  59. <artifactId>guava</artifactId>
  60. <version>17.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>dom4j</groupId>
  64. <artifactId>dom4j</artifactId>
  65. <version>1.6.1</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>commons-codec</groupId>
  69. <artifactId>commons-codec</artifactId>
  70. <version>1.9</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.tomcat</groupId>
  74. <artifactId>tomcat-jdbc</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.poi</groupId>
  78. <artifactId>poi</artifactId>
  79. <version>3.10-FINAL</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>javax.websocket</groupId>
  83. <artifactId>javax.websocket-api</artifactId>
  84. <version>1.0</version>
  85. <scope>provided</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>javax.mail</groupId>
  89. <artifactId>mail</artifactId>
  90. <version>1.4.7</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.htmlparser</groupId>
  94. <artifactId>htmlparser</artifactId>
  95. <version>2.1</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>net.sourceforge.nekohtml</groupId>
  99. <artifactId>nekohtml</artifactId>
  100. <version>1.9.21</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>xml-apis</groupId>
  104. <artifactId>xml-apis</artifactId>
  105. <version>1.4.01</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.mapdb</groupId>
  109. <artifactId>mapdb</artifactId>
  110. <version>1.0.5</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.igniterealtime.smack</groupId>
  114. <artifactId>smack</artifactId>
  115. <version>3.2.1</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.igniterealtime.smack</groupId>
  119. <artifactId>smackx</artifactId>
  120. <version>3.2.1</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>net.spy</groupId>
  124. <artifactId>spymemcached</artifactId>
  125. <version>2.11.6</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.apache.poi</groupId>
  129. <artifactId>poi</artifactId>
  130. <version>3.11</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>BaiduPush</groupId>
  134. <artifactId>BaiduPush</artifactId>
  135. <version>BaiduPush</version>
  136. </dependency>
  137. </dependencies>
  138. <build>
  139. <resources>
  140. <resource>
  141. <directory>src/main/java</directory>
  142. <includes>
  143. <include>**/*.xml</include>
  144. </includes>
  145. <filtering>true</filtering>
  146. </resource>
  147. </resources>
  148. <plugins>
  149. <plugin>
  150. <groupId>org.apache.maven.plugins</groupId>
  151. <artifactId>maven-compiler-plugin</artifactId>
  152. <configuration>
  153. <source>1.8</source>
  154. <target>1.8</target>
  155. <encoding>UTF-8</encoding>
  156. </configuration>
  157. </plugin>
  158. </plugins>
  159. </build>
  160. <distributionManagement>
  161. <!-- 发布release仓库 -->
  162. <repository>
  163. <id>platform-release</id>
  164. <name>platform-release</name>
  165. <url>https://maven.ubtob.net/artifactory/libs-release-local</url>
  166. </repository>
  167. <!-- 发布快照版本 -->
  168. <snapshotRepository>
  169. <id>platform-snapshots</id>
  170. <name>platform-snapshots</name>
  171. <url>https://maven.ubtob.net/artifactory/libs-snapshot-local</url>
  172. </snapshotRepository>
  173. </distributionManagement>
  174. </project>