dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

253 Zeilen
7.5 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>1.3.5-SNAPSHOT</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. </properties>
  48. <dependencies>
  49. <dependency>
  50. <groupId>org.slf4j</groupId>
  51. <artifactId>slf4j-api</artifactId>
  52. <version>${slf4j.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>ch.qos.logback</groupId>
  56. <artifactId>logback-classic</artifactId>
  57. <version>${logback.version}</version>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.httpcomponents</groupId>
  62. <artifactId>fluent-hc</artifactId>
  63. <version>${httpclient.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.httpcomponents</groupId>
  67. <artifactId>httpmime</artifactId>
  68. <version>${httpclient.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.jodd</groupId>
  72. <artifactId>jodd-http</artifactId>
  73. <version>${jodd-http.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.google.code.gson</groupId>
  77. <artifactId>gson</artifactId>
  78. <version>2.2.2</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>commons-codec</groupId>
  82. <artifactId>commons-codec</artifactId>
  83. <version>1.9</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>commons-io</groupId>
  87. <artifactId>commons-io</artifactId>
  88. <version>2.4</version>
  89. </dependency>
  90. </dependencies>
  91. <dependencyManagement>
  92. <dependencies>
  93. <dependency>
  94. <groupId>junit</groupId>
  95. <artifactId>junit</artifactId>
  96. <version>4.11</version>
  97. <scope>test</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.google.inject</groupId>
  101. <artifactId>guice</artifactId>
  102. <version>3.0</version>
  103. <scope>test</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.testng</groupId>
  107. <artifactId>testng</artifactId>
  108. <version>6.8.7</version>
  109. <scope>test</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.mockito</groupId>
  113. <artifactId>mockito-all</artifactId>
  114. <version>1.9.5</version>
  115. <scope>test</scope>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.eclipse.jetty</groupId>
  119. <artifactId>jetty-server</artifactId>
  120. <version>9.3.0.M0</version>
  121. <scope>test</scope>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.eclipse.jetty</groupId>
  125. <artifactId>jetty-servlet</artifactId>
  126. <version>9.3.0.M0</version>
  127. <scope>test</scope>
  128. </dependency>
  129. </dependencies>
  130. </dependencyManagement>
  131. <distributionManagement>
  132. <snapshotRepository>
  133. <id>ossrh</id>
  134. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  135. </snapshotRepository>
  136. <repository>
  137. <id>ossrh</id>
  138. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  139. </repository>
  140. </distributionManagement>
  141. <profiles>
  142. <profile>
  143. <id>release</id>
  144. <build>
  145. <plugins>
  146. <plugin>
  147. <groupId>org.apache.maven.plugins</groupId>
  148. <artifactId>maven-source-plugin</artifactId>
  149. <version>2.2.1</version>
  150. <executions>
  151. <execution>
  152. <id>attach-sources</id>
  153. <goals>
  154. <goal>jar-no-fork</goal>
  155. </goals>
  156. </execution>
  157. </executions>
  158. </plugin>
  159. <plugin>
  160. <groupId>org.apache.maven.plugins</groupId>
  161. <artifactId>maven-javadoc-plugin</artifactId>
  162. <version>2.9.1</version>
  163. <executions>
  164. <execution>
  165. <id>attach-javadocs</id>
  166. <goals>
  167. <goal>jar</goal>
  168. </goals>
  169. </execution>
  170. </executions>
  171. <configuration>
  172. <charset>UTF-8</charset>
  173. <locale>zh_CN</locale>
  174. </configuration>
  175. </plugin>
  176. <plugin>
  177. <groupId>org.apache.maven.plugins</groupId>
  178. <artifactId>maven-gpg-plugin</artifactId>
  179. <version>1.5</version>
  180. <executions>
  181. <execution>
  182. <id>sign-artifacts</id>
  183. <phase>verify</phase>
  184. <goals>
  185. <goal>sign</goal>
  186. </goals>
  187. </execution>
  188. </executions>
  189. </plugin>
  190. </plugins>
  191. </build>
  192. </profile>
  193. </profiles>
  194. <build>
  195. <pluginManagement>
  196. <plugins>
  197. <plugin>
  198. <groupId>org.apache.maven.plugins</groupId>
  199. <artifactId>maven-surefire-plugin</artifactId>
  200. <version>2.17</version>
  201. </plugin>
  202. </plugins>
  203. </pluginManagement>
  204. <plugins>
  205. <plugin>
  206. <groupId>org.sonatype.plugins</groupId>
  207. <artifactId>nexus-staging-maven-plugin</artifactId>
  208. <version>1.6.3</version>
  209. <extensions>true</extensions>
  210. <configuration>
  211. <serverId>ossrh</serverId>
  212. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  213. <autoReleaseAfterClose>false</autoReleaseAfterClose>
  214. </configuration>
  215. </plugin>
  216. <plugin>
  217. <groupId>org.apache.maven.plugins</groupId>
  218. <artifactId>maven-release-plugin</artifactId>
  219. <version>2.5.1</version>
  220. <configuration>
  221. <autoVersionSubmodules>true</autoVersionSubmodules>
  222. <useReleaseProfile>false</useReleaseProfile>
  223. <releaseProfiles>release</releaseProfiles>
  224. <goals>deploy</goals>
  225. </configuration>
  226. </plugin>
  227. <plugin>
  228. <groupId>org.apache.maven.plugins</groupId>
  229. <artifactId>maven-compiler-plugin</artifactId>
  230. <version>2.3.2</version>
  231. <configuration>
  232. <source>1.7</source>
  233. <target>1.7</target>
  234. <encoding>UTF-8</encoding>
  235. </configuration>
  236. </plugin>
  237. </plugins>
  238. </build>
  239. </project>