dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 7.9 KiB

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