dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

10 роки тому
10 роки тому
9 роки тому
10 роки тому
9 роки тому
8 роки тому
8 роки тому
8 роки тому
10 роки тому
8 роки тому
10 роки тому
10 роки тому
10 роки тому
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  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.1.2</version>
  9. <packaging>pom</packaging>
  10. <name>WeiXin Java Tools - Parent</name>
  11. <description>微信公众号、企业号上级POM</description>
  12. <url>https://github.com/binarywang/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. </developer>
  24. <developer>
  25. <name>Binary Wang</name>
  26. <email>binarywang@gmail.com</email>
  27. </developer>
  28. </developers>
  29. <scm>
  30. <connection>scm:git:https://github.com/binarywang/weixin-java-tools.git</connection>
  31. <developerConnection>scm:git:git@github.com:binarywang/weixin-java-tools.git</developerConnection>
  32. <url>https://github.com/binarywang/weixin-java-tools</url>
  33. </scm>
  34. <modules>
  35. <module>weixin-java-common</module>
  36. <module>weixin-java-cp</module>
  37. <module>weixin-java-mp</module>
  38. </modules>
  39. <properties>
  40. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  41. <downloadJavadocs>true</downloadJavadocs>
  42. <downloadSources>true</downloadSources>
  43. <httpclient.version>4.5</httpclient.version>
  44. <slf4j.version>1.7.10</slf4j.version>
  45. <logback.version>1.1.2</logback.version>
  46. <jodd-http.version>3.6.7</jodd-http.version>
  47. <jedis.version>2.9.0</jedis.version>
  48. <gson.version>2.7</gson.version>
  49. <commons-lang3.version>3.4</commons-lang3.version>
  50. <commons-io.version>2.5</commons-io.version>
  51. <commons-codec.version>1.10</commons-codec.version>
  52. <jetty.version>9.3.0.M0</jetty.version>
  53. <jetty-new.version>9.3.10.v20160621</jetty-new.version>
  54. </properties>
  55. <dependencies>
  56. <dependency>
  57. <groupId>org.slf4j</groupId>
  58. <artifactId>slf4j-api</artifactId>
  59. <version>${slf4j.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>ch.qos.logback</groupId>
  63. <artifactId>logback-classic</artifactId>
  64. <version>${logback.version}</version>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.httpcomponents</groupId>
  69. <artifactId>fluent-hc</artifactId>
  70. <version>${httpclient.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.httpcomponents</groupId>
  74. <artifactId>httpmime</artifactId>
  75. <version>${httpclient.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.jodd</groupId>
  79. <artifactId>jodd-http</artifactId>
  80. <version>${jodd-http.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.google.code.gson</groupId>
  84. <artifactId>gson</artifactId>
  85. <version>${gson.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>commons-codec</groupId>
  89. <artifactId>commons-codec</artifactId>
  90. <version>${commons-codec.version}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>commons-io</groupId>
  94. <artifactId>commons-io</artifactId>
  95. <version>${commons-io.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.apache.commons</groupId>
  99. <artifactId>commons-lang3</artifactId>
  100. <version>${commons-lang3.version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>redis.clients</groupId>
  104. <artifactId>jedis</artifactId>
  105. <version>${jedis.version}</version>
  106. <scope>provided</scope>
  107. </dependency>
  108. </dependencies>
  109. <dependencyManagement>
  110. <dependencies>
  111. <dependency>
  112. <groupId>junit</groupId>
  113. <artifactId>junit</artifactId>
  114. <version>4.11</version>
  115. <scope>test</scope>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.google.inject</groupId>
  119. <artifactId>guice</artifactId>
  120. <version>3.0</version>
  121. <scope>test</scope>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.testng</groupId>
  125. <artifactId>testng</artifactId>
  126. <version>6.8.7</version>
  127. <scope>test</scope>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.mockito</groupId>
  131. <artifactId>mockito-all</artifactId>
  132. <version>1.9.5</version>
  133. <scope>test</scope>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.eclipse.jetty</groupId>
  137. <artifactId>jetty-server</artifactId>
  138. <version>${jetty.version}</version>
  139. <scope>test</scope>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.eclipse.jetty</groupId>
  143. <artifactId>jetty-servlet</artifactId>
  144. <version>${jetty.version}</version>
  145. <scope>test</scope>
  146. </dependency>
  147. </dependencies>
  148. </dependencyManagement>
  149. <distributionManagement>
  150. <snapshotRepository>
  151. <id>ossrh</id>
  152. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  153. </snapshotRepository>
  154. <repository>
  155. <id>ossrh</id>
  156. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  157. </repository>
  158. </distributionManagement>
  159. <profiles>
  160. <profile>
  161. <id>doclint-java8-disable</id>
  162. <activation>
  163. <jdk>[1.8,)</jdk>
  164. </activation>
  165. <properties>
  166. <javadoc.opts>-Xdoclint:none</javadoc.opts>
  167. </properties>
  168. </profile>
  169. <profile>
  170. <id>release</id>
  171. <build>
  172. <plugins>
  173. <plugin>
  174. <groupId>org.apache.maven.plugins</groupId>
  175. <artifactId>maven-source-plugin</artifactId>
  176. <version>2.2.1</version>
  177. <executions>
  178. <execution>
  179. <id>attach-sources</id>
  180. <goals>
  181. <goal>jar-no-fork</goal>
  182. </goals>
  183. </execution>
  184. </executions>
  185. </plugin>
  186. <plugin>
  187. <groupId>org.apache.maven.plugins</groupId>
  188. <artifactId>maven-javadoc-plugin</artifactId>
  189. <version>2.9.1</version>
  190. <executions>
  191. <execution>
  192. <id>attach-javadocs</id>
  193. <goals>
  194. <goal>jar</goal>
  195. </goals>
  196. </execution>
  197. </executions>
  198. <configuration>
  199. <additionalparam>${javadoc.opts}</additionalparam>
  200. <charset>UTF-8</charset>
  201. <locale>zh_CN</locale>
  202. </configuration>
  203. </plugin>
  204. <plugin>
  205. <groupId>org.apache.maven.plugins</groupId>
  206. <artifactId>maven-gpg-plugin</artifactId>
  207. <version>1.5</version>
  208. <executions>
  209. <execution>
  210. <id>sign-artifacts</id>
  211. <phase>verify</phase>
  212. <goals>
  213. <goal>sign</goal>
  214. </goals>
  215. </execution>
  216. </executions>
  217. </plugin>
  218. </plugins>
  219. </build>
  220. </profile>
  221. </profiles>
  222. <build>
  223. <pluginManagement>
  224. <plugins>
  225. <plugin>
  226. <groupId>org.apache.maven.plugins</groupId>
  227. <artifactId>maven-surefire-plugin</artifactId>
  228. <version>2.17</version>
  229. <configuration>
  230. <skip>true</skip>
  231. </configuration>
  232. </plugin>
  233. </plugins>
  234. </pluginManagement>
  235. <plugins>
  236. <plugin>
  237. <groupId>org.sonatype.plugins</groupId>
  238. <artifactId>nexus-staging-maven-plugin</artifactId>
  239. <version>1.6.3</version>
  240. <extensions>true</extensions>
  241. <configuration>
  242. <serverId>ossrh</serverId>
  243. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  244. <autoReleaseAfterClose>false</autoReleaseAfterClose>
  245. </configuration>
  246. </plugin>
  247. <plugin>
  248. <groupId>org.apache.maven.plugins</groupId>
  249. <artifactId>maven-release-plugin</artifactId>
  250. <version>2.5.1</version>
  251. <configuration>
  252. <autoVersionSubmodules>true</autoVersionSubmodules>
  253. <useReleaseProfile>false</useReleaseProfile>
  254. <releaseProfiles>release</releaseProfiles>
  255. <goals>deploy</goals>
  256. </configuration>
  257. </plugin>
  258. <plugin>
  259. <groupId>org.apache.maven.plugins</groupId>
  260. <artifactId>maven-compiler-plugin</artifactId>
  261. <version>2.3.2</version>
  262. <configuration>
  263. <source>1.7</source>
  264. <target>1.7</target>
  265. <encoding>UTF-8</encoding>
  266. </configuration>
  267. </plugin>
  268. </plugins>
  269. </build>
  270. </project>