pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  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/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.j-im</groupId>
  5. <artifactId>jim-parent</artifactId>
  6. <packaging>pom</packaging>
  7. <name>${project.artifactId}</name>
  8. <version>2.6.0.v20190114-RELEASE</version>
  9. <description>Jim-parent is the dependent parent project of J-IM communication establishment.</description>
  10. <url>http://www.j-im.org/</url>
  11. <licenses>
  12. <license>
  13. <name>The Apache Software License, Version 2.0</name>
  14. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  15. </license>
  16. </licenses>
  17. <developers>
  18. <developer>
  19. <id>wchao</id>
  20. <name>wchao</name>
  21. <email>wchaojava@163.com</email>
  22. <url>http://git.oschina.net/xchao/j-im</url>
  23. </developer>
  24. </developers>
  25. <scm>
  26. <connection>scm:git:git@gitee.com:xchao/j-im.git</connection>
  27. <developerConnection>scm:git:git@gitee.com:xchao/j-im.git</developerConnection>
  28. <url>git@gitee.com:xchao/j-im.git</url>
  29. </scm>
  30. <modules>
  31. <module>../jim-common</module>
  32. <module>../jim-server</module>
  33. <module>../server-chat</module>
  34. </modules>
  35. <properties>
  36. <jim.version>2.6.0.v20190114-RELEASE</jim.version>
  37. <tio-core.version>2.4.0.v20180508-RELEASE</tio-core.version>
  38. <tio-utils.version>2.4.0.v20180508-RELEASE</tio-utils.version>
  39. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  40. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  41. <maven.test.skip>true</maven.test.skip>
  42. <maven.version>3.5.0</maven.version>
  43. <mysql.driver.version>8.0.17</mysql.driver.version>
  44. <druid.version>1.1.2</druid.version>
  45. <jfinal.version>3.2</jfinal.version>
  46. <logback.version>1.2.3</logback.version>
  47. <slf4j.version>1.7.25</slf4j.version>
  48. <jdk.version>1.8</jdk.version>
  49. <junit.version>4.12</junit.version>
  50. <commons-collections4.version>4.1</commons-collections4.version>
  51. <commons-io.version>2.5</commons-io.version>
  52. <commons-lang3.version>3.6</commons-lang3.version>
  53. <commons-codec.version>1.10</commons-codec.version>
  54. <commons-compress.version>1.14</commons-compress.version>
  55. <fastjson.version>1.2.35</fastjson.version>
  56. <testng.version>6.11</testng.version>
  57. <hutool.version>4.0.10</hutool.version>
  58. <commons-beanutils.version>1.9.3</commons-beanutils.version>
  59. <jedis.version>2.7.3</jedis.version>
  60. <redisson.version>3.7.0</redisson.version>
  61. <j2cache.version>2.3.21-release</j2cache.version>
  62. </properties>
  63. <repositories>
  64. </repositories>
  65. <pluginRepositories>
  66. </pluginRepositories>
  67. <dependencyManagement>
  68. <dependencies>
  69. <dependency>
  70. <groupId>org.t-io</groupId>
  71. <artifactId>tio-utils</artifactId>
  72. <version>${tio-utils.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.t-io</groupId>
  76. <artifactId>tio-core</artifactId>
  77. <version>${tio-core.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.j-im</groupId>
  81. <artifactId>jim-common</artifactId>
  82. <version>${jim.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.j-im</groupId>
  86. <artifactId>jim-server</artifactId>
  87. <version>${jim.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.j-im</groupId>
  91. <artifactId>jim-client</artifactId>
  92. <version>${jim.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.jfinal</groupId>
  96. <artifactId>jfinal</artifactId>
  97. <version>${jfinal.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>redis.clients</groupId>
  101. <artifactId>jedis</artifactId>
  102. <version>${jedis.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.redisson</groupId>
  106. <artifactId>redisson</artifactId>
  107. <version>${redisson.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>commons-beanutils</groupId>
  111. <artifactId>commons-beanutils</artifactId>
  112. <version>${commons-beanutils.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>mysql</groupId>
  116. <artifactId>mysql-connector-java</artifactId>
  117. <version>${mysql.driver.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.alibaba</groupId>
  121. <artifactId>druid</artifactId>
  122. <version>${druid.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>net.sf.ehcache</groupId>
  126. <artifactId>ehcache-core</artifactId>
  127. <version>2.6.11</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.squareup.okhttp3</groupId>
  131. <artifactId>okhttp</artifactId>
  132. <version>3.8.1</version>
  133. </dependency>
  134. <!-- log framework start -->
  135. <dependency>
  136. <groupId>org.slf4j</groupId>
  137. <artifactId>slf4j-log4j12</artifactId>
  138. <version>${slf4j.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.slf4j</groupId>
  142. <artifactId>slf4j-ext</artifactId>
  143. <version>${slf4j.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.slf4j</groupId>
  147. <artifactId>slf4j-api</artifactId>
  148. <version>${slf4j.version}</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>ch.qos.logback</groupId>
  152. <artifactId>logback-classic</artifactId>
  153. <version>${logback.version}</version>
  154. </dependency>
  155. <!-- redirect apache commons logging -->
  156. <dependency>
  157. <groupId>org.slf4j</groupId>
  158. <artifactId>jcl-over-slf4j</artifactId>
  159. <version>${slf4j.version}</version>
  160. </dependency>
  161. <!-- redirect jdk util logging -->
  162. <dependency>
  163. <groupId>org.slf4j</groupId>
  164. <artifactId>jul-to-slf4j</artifactId>
  165. <version>${slf4j.version}</version>
  166. </dependency>
  167. <!-- redirect log4j -->
  168. <dependency>
  169. <groupId>org.slf4j</groupId>
  170. <artifactId>log4j-over-slf4j</artifactId>
  171. <version>${slf4j.version}</version>
  172. </dependency>
  173. <!-- log framework end -->
  174. <dependency>
  175. <groupId>junit</groupId>
  176. <artifactId>junit</artifactId>
  177. <version>${junit.version}</version>
  178. </dependency>
  179. <!-- logback-access访问模块与Servlet容器集成提供通过Http来访问日记的功能 -->
  180. <dependency>
  181. <groupId>ch.qos.logback</groupId>
  182. <artifactId>logback-access</artifactId>
  183. <version>${logback.version}</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>ch.qos.logback</groupId>
  187. <artifactId>logback-core</artifactId>
  188. <version>${logback.version}</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>org.apache.commons</groupId>
  192. <artifactId>commons-collections4</artifactId>
  193. <version>${commons-collections4.version}</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>org.apache.commons</groupId>
  197. <artifactId>commons-lang3</artifactId>
  198. <version>${commons-lang3.version}</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>commons-io</groupId>
  202. <artifactId>commons-io</artifactId>
  203. <version>${commons-io.version}</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>commons-codec</groupId>
  207. <artifactId>commons-codec</artifactId>
  208. <version>${commons-codec.version}</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>com.alibaba</groupId>
  212. <artifactId>fastjson</artifactId>
  213. <version>${fastjson.version}</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>org.testng</groupId>
  217. <artifactId>testng</artifactId>
  218. <version>${testng.version}</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>org.apache.commons</groupId>
  222. <artifactId>commons-compress</artifactId>
  223. <version>${commons-compress.version}</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.jsoup</groupId>
  227. <artifactId>jsoup</artifactId>
  228. <version>1.10.3</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>io.springside</groupId>
  232. <artifactId>springside-utils</artifactId>
  233. <version>5.0.0-RC1</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>com.google.guava</groupId>
  237. <artifactId>guava</artifactId>
  238. <version>23.0</version>
  239. </dependency>
  240. <dependency>
  241. <groupId>nl.basjes.parse.useragent</groupId>
  242. <artifactId>yauaa</artifactId>
  243. <version>1.4</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>com.typesafe</groupId>
  247. <artifactId>config</artifactId>
  248. <version>1.3.1</version>
  249. </dependency>
  250. <dependency>
  251. <groupId>net.oschina.j2cache</groupId>
  252. <artifactId>j2cache-core</artifactId>
  253. <version>${j2cache.version}</version>
  254. </dependency>
  255. </dependencies>
  256. </dependencyManagement>
  257. <!-- 插件配置 -->
  258. <build>
  259. <plugins>
  260. <plugin>
  261. <groupId>org.apache.maven.plugins</groupId>
  262. <artifactId>maven-deploy-plugin</artifactId>
  263. <configuration>
  264. <skip>true</skip>
  265. </configuration>
  266. </plugin>
  267. </plugins>
  268. <!-- 适配idea下生成不了配置文件问题 -->
  269. <resources>
  270. <resource>
  271. <directory>src/main/java</directory>
  272. <excludes>
  273. <exclude>**/*.java</exclude>
  274. </excludes>
  275. </resource>
  276. <resource>
  277. <directory>src/main/resources</directory>
  278. </resource>
  279. </resources>
  280. </build>
  281. <profiles>
  282. <profile>
  283. <id>release</id>
  284. <distributionManagement>
  285. <snapshotRepository>
  286. <id>oss</id>
  287. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  288. </snapshotRepository>
  289. <repository>
  290. <id>oss</id>
  291. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  292. </repository>
  293. </distributionManagement>
  294. <build>
  295. <plugins>
  296. <!-- Source -->
  297. <plugin>
  298. <groupId>org.apache.maven.plugins</groupId>
  299. <artifactId>maven-source-plugin</artifactId>
  300. <version>3.0.1</version>
  301. <executions>
  302. <execution>
  303. <phase>package</phase>
  304. <goals>
  305. <goal>jar-no-fork</goal>
  306. </goals>
  307. </execution>
  308. </executions>
  309. </plugin>
  310. <!-- Javadoc -->
  311. <plugin>
  312. <groupId>org.apache.maven.plugins</groupId>
  313. <artifactId>maven-javadoc-plugin</artifactId>
  314. <version>2.10.4</version>
  315. <configuration><additionalparam>-Xdoclint:none</additionalparam></configuration>
  316. <executions>
  317. <execution>
  318. <phase>package</phase>
  319. <goals>
  320. <goal>jar</goal>
  321. </goals>
  322. </execution>
  323. </executions>
  324. </plugin>
  325. <!-- GPG -->
  326. <plugin>
  327. <groupId>org.apache.maven.plugins</groupId>
  328. <artifactId>maven-gpg-plugin</artifactId>
  329. <version>1.6</version>
  330. <executions>
  331. <execution>
  332. <id>sign-artifacts</id>
  333. <phase>verify</phase>
  334. <goals>
  335. <goal>sign</goal>
  336. </goals>
  337. </execution>
  338. </executions>
  339. </plugin>
  340. </plugins>
  341. </build>
  342. </profile>
  343. </profiles>
  344. </project>