dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

315 satır
9.6 KiB

  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.github.binarywang</groupId>
  7. <artifactId>weixin-java-parent</artifactId>
  8. <version>2.4.0-SNAPSHOT</version>
  9. <packaging>pom</packaging>
  10. <name>WeiXin Java Tools - Parent</name>
  11. <description>微信公众号、企业号上级POM</description>
  12. <url>https://github.com/wechat-group/weixin-java-tools</url>
  13. <licenses>
  14. <license>
  15. <name>The Apache License, Version 2.0</name>
  16. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  17. </license>
  18. </licenses>
  19. <developers>
  20. <developer>
  21. <name>Daniel Qian</name>
  22. <email>chanjarster@gmail.com</email>
  23. <url>https://github.com/chanjarster</url>
  24. </developer>
  25. <developer>
  26. <name>Binary Wang</name>
  27. <email>binarywang@gmail.com</email>
  28. <url>https://github.com/binarywang</url>
  29. </developer>
  30. <developer>
  31. <name>gaigeshen</name>
  32. <email>gaigeshen@qq.com</email>
  33. <url>https://github.com/gaigeshen</url>
  34. </developer>
  35. <developer>
  36. <name>Liu Mingbo</name>
  37. <email>liumingbo2008@gmail.com</email>
  38. <url>https://github.com/FirenzesEagle</url>
  39. </developer>
  40. <developer>
  41. <name>kakotor</name>
  42. <email>kakotor@gmail.com</email>
  43. <url>https://github.com/kakotor</url>
  44. </developer>
  45. <developer>
  46. <name>xiong</name>
  47. <email>zhaoxiong.tan@gmail.com</email>
  48. <url>https://github.com/ZhaoxiongTan</url>
  49. </developer>
  50. <developer>
  51. <name>LiuJunGuang</name>
  52. <email>aimilin@yeah.net</email>
  53. <url>https://github.com/aimilin6688</url>
  54. </developer>
  55. </developers>
  56. <scm>
  57. <connection>scm:git:https://github.com/wechat-group/weixin-java-tools.git</connection>
  58. <developerConnection>scm:git:git@github.com:wechat-group/weixin-java-tools.git</developerConnection>
  59. <url>https://github.com/wechat-group/weixin-java-tools</url>
  60. </scm>
  61. <modules>
  62. <module>weixin-java-common</module>
  63. <module>weixin-java-cp</module>
  64. <module>weixin-java-mp</module>
  65. <module>weixin-java-osgi</module>
  66. </modules>
  67. <properties>
  68. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  69. <downloadJavadocs>true</downloadJavadocs>
  70. <downloadSources>true</downloadSources>
  71. <httpclient.version>4.5</httpclient.version>
  72. <slf4j.version>1.7.10</slf4j.version>
  73. <logback.version>1.1.2</logback.version>
  74. <jedis.version>2.9.0</jedis.version>
  75. <gson.version>2.7</gson.version>
  76. <guava.version>19.0</guava.version>
  77. <commons-lang3.version>3.5</commons-lang3.version>
  78. <commons-io.version>2.5</commons-io.version>
  79. <commons-codec.version>1.10</commons-codec.version>
  80. <jetty.version>9.3.0.RC0</jetty.version>
  81. </properties>
  82. <dependencies>
  83. <dependency>
  84. <groupId>org.slf4j</groupId>
  85. <artifactId>slf4j-api</artifactId>
  86. <version>${slf4j.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>ch.qos.logback</groupId>
  90. <artifactId>logback-classic</artifactId>
  91. <version>${logback.version}</version>
  92. <scope>test</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.httpcomponents</groupId>
  96. <artifactId>httpclient</artifactId>
  97. <version>${httpclient.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.httpcomponents</groupId>
  101. <artifactId>httpmime</artifactId>
  102. <version>${httpclient.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.google.code.gson</groupId>
  106. <artifactId>gson</artifactId>
  107. <version>${gson.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>commons-codec</groupId>
  111. <artifactId>commons-codec</artifactId>
  112. <version>${commons-codec.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>commons-io</groupId>
  116. <artifactId>commons-io</artifactId>
  117. <version>${commons-io.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.commons</groupId>
  121. <artifactId>commons-lang3</artifactId>
  122. <version>${commons-lang3.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>redis.clients</groupId>
  126. <artifactId>jedis</artifactId>
  127. <version>${jedis.version}</version>
  128. <optional>true</optional>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.google.guava</groupId>
  132. <artifactId>guava</artifactId>
  133. </dependency>
  134. </dependencies>
  135. <dependencyManagement>
  136. <dependencies>
  137. <dependency>
  138. <groupId>junit</groupId>
  139. <artifactId>junit</artifactId>
  140. <version>4.11</version>
  141. <scope>test</scope>
  142. </dependency>
  143. <dependency>
  144. <groupId>com.google.inject</groupId>
  145. <artifactId>guice</artifactId>
  146. <version>3.0</version>
  147. <scope>test</scope>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.testng</groupId>
  151. <artifactId>testng</artifactId>
  152. <version>6.8.7</version>
  153. <scope>test</scope>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.mockito</groupId>
  157. <artifactId>mockito-all</artifactId>
  158. <version>1.9.5</version>
  159. <scope>test</scope>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.eclipse.jetty</groupId>
  163. <artifactId>jetty-server</artifactId>
  164. <version>${jetty.version}</version>
  165. <scope>test</scope>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.eclipse.jetty</groupId>
  169. <artifactId>jetty-servlet</artifactId>
  170. <version>${jetty.version}</version>
  171. <scope>test</scope>
  172. </dependency>
  173. <dependency>
  174. <groupId>com.google.guava</groupId>
  175. <artifactId>guava</artifactId>
  176. <version>${guava.version}</version>
  177. </dependency>
  178. </dependencies>
  179. </dependencyManagement>
  180. <distributionManagement>
  181. <snapshotRepository>
  182. <id>ossrh</id>
  183. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  184. </snapshotRepository>
  185. <repository>
  186. <id>ossrh</id>
  187. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  188. </repository>
  189. </distributionManagement>
  190. <profiles>
  191. <profile>
  192. <id>doclint-java8-disable</id>
  193. <activation>
  194. <jdk>[1.8,)</jdk>
  195. </activation>
  196. <properties>
  197. <javadoc.opts>-Xdoclint:none</javadoc.opts>
  198. </properties>
  199. </profile>
  200. <profile>
  201. <id>release</id>
  202. <build>
  203. <plugins>
  204. <plugin>
  205. <groupId>org.apache.maven.plugins</groupId>
  206. <artifactId>maven-source-plugin</artifactId>
  207. <version>2.2.1</version>
  208. <executions>
  209. <execution>
  210. <id>attach-sources</id>
  211. <goals>
  212. <goal>jar-no-fork</goal>
  213. </goals>
  214. </execution>
  215. </executions>
  216. </plugin>
  217. <plugin>
  218. <groupId>org.apache.maven.plugins</groupId>
  219. <artifactId>maven-javadoc-plugin</artifactId>
  220. <version>2.9.1</version>
  221. <executions>
  222. <execution>
  223. <id>attach-javadocs</id>
  224. <goals>
  225. <goal>jar</goal>
  226. </goals>
  227. </execution>
  228. </executions>
  229. <configuration>
  230. <additionalparam>${javadoc.opts}</additionalparam>
  231. <charset>UTF-8</charset>
  232. <locale>zh_CN</locale>
  233. </configuration>
  234. </plugin>
  235. <plugin>
  236. <groupId>org.apache.maven.plugins</groupId>
  237. <artifactId>maven-gpg-plugin</artifactId>
  238. <version>1.5</version>
  239. <executions>
  240. <execution>
  241. <id>sign-artifacts</id>
  242. <phase>verify</phase>
  243. <goals>
  244. <goal>sign</goal>
  245. </goals>
  246. </execution>
  247. </executions>
  248. </plugin>
  249. </plugins>
  250. </build>
  251. </profile>
  252. </profiles>
  253. <build>
  254. <pluginManagement>
  255. <plugins>
  256. <plugin>
  257. <groupId>org.apache.maven.plugins</groupId>
  258. <artifactId>maven-surefire-plugin</artifactId>
  259. <version>2.17</version>
  260. <configuration>
  261. <skip>true</skip>
  262. </configuration>
  263. </plugin>
  264. </plugins>
  265. </pluginManagement>
  266. <plugins>
  267. <plugin>
  268. <groupId>org.sonatype.plugins</groupId>
  269. <artifactId>nexus-staging-maven-plugin</artifactId>
  270. <version>1.6.3</version>
  271. <extensions>true</extensions>
  272. <configuration>
  273. <serverId>ossrh</serverId>
  274. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  275. <autoReleaseAfterClose>false</autoReleaseAfterClose>
  276. </configuration>
  277. </plugin>
  278. <plugin>
  279. <groupId>org.apache.maven.plugins</groupId>
  280. <artifactId>maven-release-plugin</artifactId>
  281. <version>2.5.1</version>
  282. <configuration>
  283. <autoVersionSubmodules>true</autoVersionSubmodules>
  284. <useReleaseProfile>false</useReleaseProfile>
  285. <releaseProfiles>release</releaseProfiles>
  286. <goals>deploy</goals>
  287. </configuration>
  288. </plugin>
  289. <plugin>
  290. <groupId>org.apache.maven.plugins</groupId>
  291. <artifactId>maven-compiler-plugin</artifactId>
  292. <version>2.3.2</version>
  293. <configuration>
  294. <source>1.7</source>
  295. <target>1.7</target>
  296. <encoding>UTF-8</encoding>
  297. </configuration>
  298. </plugin>
  299. </plugins>
  300. </build>
  301. </project>