dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

pom.xml 9.6 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  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. <maven.compiler.source>1.7</maven.compiler.source>
  69. <maven.compiler.target>1.7</maven.compiler.target>
  70. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  71. <downloadJavadocs>true</downloadJavadocs>
  72. <downloadSources>true</downloadSources>
  73. <httpclient.version>4.5</httpclient.version>
  74. <slf4j.version>1.7.10</slf4j.version>
  75. <logback.version>1.1.2</logback.version>
  76. <jedis.version>2.9.0</jedis.version>
  77. <gson.version>2.7</gson.version>
  78. <guava.version>19.0</guava.version>
  79. <commons-lang3.version>3.5</commons-lang3.version>
  80. <commons-io.version>2.5</commons-io.version>
  81. <commons-codec.version>1.10</commons-codec.version>
  82. <jetty.version>9.3.0.RC0</jetty.version>
  83. </properties>
  84. <dependencies>
  85. <dependency>
  86. <groupId>org.slf4j</groupId>
  87. <artifactId>slf4j-api</artifactId>
  88. <version>${slf4j.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>ch.qos.logback</groupId>
  92. <artifactId>logback-classic</artifactId>
  93. <version>${logback.version}</version>
  94. <scope>test</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.httpcomponents</groupId>
  98. <artifactId>httpclient</artifactId>
  99. <version>${httpclient.version}</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.apache.httpcomponents</groupId>
  103. <artifactId>httpmime</artifactId>
  104. <version>${httpclient.version}</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.google.code.gson</groupId>
  108. <artifactId>gson</artifactId>
  109. <version>${gson.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>commons-codec</groupId>
  113. <artifactId>commons-codec</artifactId>
  114. <version>${commons-codec.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>commons-io</groupId>
  118. <artifactId>commons-io</artifactId>
  119. <version>${commons-io.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.apache.commons</groupId>
  123. <artifactId>commons-lang3</artifactId>
  124. <version>${commons-lang3.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>redis.clients</groupId>
  128. <artifactId>jedis</artifactId>
  129. <version>${jedis.version}</version>
  130. <optional>true</optional>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.google.guava</groupId>
  134. <artifactId>guava</artifactId>
  135. </dependency>
  136. </dependencies>
  137. <dependencyManagement>
  138. <dependencies>
  139. <dependency>
  140. <groupId>junit</groupId>
  141. <artifactId>junit</artifactId>
  142. <version>4.11</version>
  143. <scope>test</scope>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.google.inject</groupId>
  147. <artifactId>guice</artifactId>
  148. <version>3.0</version>
  149. <scope>test</scope>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.testng</groupId>
  153. <artifactId>testng</artifactId>
  154. <version>6.8.7</version>
  155. <scope>test</scope>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.mockito</groupId>
  159. <artifactId>mockito-all</artifactId>
  160. <version>1.9.5</version>
  161. <scope>test</scope>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.eclipse.jetty</groupId>
  165. <artifactId>jetty-server</artifactId>
  166. <version>${jetty.version}</version>
  167. <scope>test</scope>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.eclipse.jetty</groupId>
  171. <artifactId>jetty-servlet</artifactId>
  172. <version>${jetty.version}</version>
  173. <scope>test</scope>
  174. </dependency>
  175. <dependency>
  176. <groupId>com.google.guava</groupId>
  177. <artifactId>guava</artifactId>
  178. <version>${guava.version}</version>
  179. </dependency>
  180. </dependencies>
  181. </dependencyManagement>
  182. <distributionManagement>
  183. <snapshotRepository>
  184. <id>ossrh</id>
  185. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  186. </snapshotRepository>
  187. <repository>
  188. <id>ossrh</id>
  189. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  190. </repository>
  191. </distributionManagement>
  192. <profiles>
  193. <profile>
  194. <id>doclint-java8-disable</id>
  195. <activation>
  196. <jdk>[1.8,)</jdk>
  197. </activation>
  198. <properties>
  199. <javadoc.opts>-Xdoclint:none</javadoc.opts>
  200. </properties>
  201. </profile>
  202. <profile>
  203. <id>release</id>
  204. <build>
  205. <plugins>
  206. <plugin>
  207. <groupId>org.apache.maven.plugins</groupId>
  208. <artifactId>maven-source-plugin</artifactId>
  209. <version>2.2.1</version>
  210. <executions>
  211. <execution>
  212. <id>attach-sources</id>
  213. <goals>
  214. <goal>jar-no-fork</goal>
  215. </goals>
  216. </execution>
  217. </executions>
  218. </plugin>
  219. <plugin>
  220. <groupId>org.apache.maven.plugins</groupId>
  221. <artifactId>maven-javadoc-plugin</artifactId>
  222. <version>2.9.1</version>
  223. <executions>
  224. <execution>
  225. <id>attach-javadocs</id>
  226. <goals>
  227. <goal>jar</goal>
  228. </goals>
  229. </execution>
  230. </executions>
  231. <configuration>
  232. <additionalparam>${javadoc.opts}</additionalparam>
  233. <charset>UTF-8</charset>
  234. <locale>zh_CN</locale>
  235. </configuration>
  236. </plugin>
  237. <plugin>
  238. <groupId>org.apache.maven.plugins</groupId>
  239. <artifactId>maven-gpg-plugin</artifactId>
  240. <version>1.5</version>
  241. <executions>
  242. <execution>
  243. <id>sign-artifacts</id>
  244. <phase>verify</phase>
  245. <goals>
  246. <goal>sign</goal>
  247. </goals>
  248. </execution>
  249. </executions>
  250. </plugin>
  251. </plugins>
  252. </build>
  253. </profile>
  254. </profiles>
  255. <build>
  256. <pluginManagement>
  257. <plugins>
  258. <plugin>
  259. <groupId>org.apache.maven.plugins</groupId>
  260. <artifactId>maven-surefire-plugin</artifactId>
  261. <version>2.17</version>
  262. <configuration>
  263. <skip>true</skip>
  264. </configuration>
  265. </plugin>
  266. </plugins>
  267. </pluginManagement>
  268. <plugins>
  269. <plugin>
  270. <groupId>org.sonatype.plugins</groupId>
  271. <artifactId>nexus-staging-maven-plugin</artifactId>
  272. <version>1.6.3</version>
  273. <extensions>true</extensions>
  274. <configuration>
  275. <serverId>ossrh</serverId>
  276. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  277. <autoReleaseAfterClose>false</autoReleaseAfterClose>
  278. </configuration>
  279. </plugin>
  280. <plugin>
  281. <groupId>org.apache.maven.plugins</groupId>
  282. <artifactId>maven-release-plugin</artifactId>
  283. <version>2.5.1</version>
  284. <configuration>
  285. <autoVersionSubmodules>true</autoVersionSubmodules>
  286. <useReleaseProfile>false</useReleaseProfile>
  287. <releaseProfiles>release</releaseProfiles>
  288. <goals>deploy</goals>
  289. </configuration>
  290. </plugin>
  291. <plugin>
  292. <groupId>org.apache.maven.plugins</groupId>
  293. <artifactId>maven-compiler-plugin</artifactId>
  294. <version>3.6.0</version>
  295. <configuration>
  296. <encoding>UTF-8</encoding>
  297. </configuration>
  298. </plugin>
  299. </plugins>
  300. </build>
  301. </project>