dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

pom.xml 9.1 KiB

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