dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

pom.xml 9.1 KiB

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