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