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

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