dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

186 rader
5.3 KiB

  1. <?xml version="1.0"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  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">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.github.binarywang</groupId>
  8. <artifactId>wx-java</artifactId>
  9. <version>3.8.0.A</version>
  10. </parent>
  11. <artifactId>weixin-java-common</artifactId>
  12. <name>WxJava - Common Java SDK</name>
  13. <description>微信开发Java SDK公共模块</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.jodd</groupId>
  17. <artifactId>jodd-http</artifactId>
  18. <scope>provided</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.squareup.okhttp3</groupId>
  22. <artifactId>okhttp</artifactId>
  23. <scope>provided</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.slf4j</groupId>
  27. <artifactId>slf4j-api</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.thoughtworks.xstream</groupId>
  31. <artifactId>xstream</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.httpcomponents</groupId>
  35. <artifactId>httpclient</artifactId>
  36. <exclusions>
  37. <exclusion>
  38. <artifactId>commons-logging</artifactId>
  39. <groupId>commons-logging</groupId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.httpcomponents</groupId>
  45. <artifactId>httpmime</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.slf4j</groupId>
  49. <artifactId>jcl-over-slf4j</artifactId>
  50. <version>1.7.24</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.google.code.gson</groupId>
  54. <artifactId>gson</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>commons-codec</groupId>
  58. <artifactId>commons-codec</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>commons-io</groupId>
  62. <artifactId>commons-io</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.commons</groupId>
  66. <artifactId>commons-lang3</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.google.guava</groupId>
  70. <artifactId>guava</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.projectlombok</groupId>
  74. <artifactId>lombok</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>ch.qos.logback</groupId>
  78. <artifactId>logback-classic</artifactId>
  79. <scope>test</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.testng</groupId>
  83. <artifactId>testng</artifactId>
  84. <scope>test</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.mockito</groupId>
  88. <artifactId>mockito-all</artifactId>
  89. <scope>test</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.google.inject</groupId>
  93. <artifactId>guice</artifactId>
  94. <scope>test</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.eclipse.jetty</groupId>
  98. <artifactId>jetty-server</artifactId>
  99. <scope>test</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.eclipse.jetty</groupId>
  103. <artifactId>jetty-servlet</artifactId>
  104. <scope>test</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.assertj</groupId>
  108. <artifactId>assertj-guava</artifactId>
  109. <scope>test</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.dom4j</groupId>
  113. <artifactId>dom4j</artifactId>
  114. <version>2.1.1</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>redis.clients</groupId>
  118. <artifactId>jedis</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.github.jedis-lock</groupId>
  122. <artifactId>jedis-lock</artifactId>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.redisson</groupId>
  126. <artifactId>redisson</artifactId>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.springframework.data</groupId>
  130. <artifactId>spring-data-redis</artifactId>
  131. </dependency>
  132. </dependencies>
  133. <build>
  134. <plugins>
  135. <plugin>
  136. <groupId>org.apache.maven.plugins</groupId>
  137. <artifactId>maven-surefire-plugin</artifactId>
  138. <configuration>
  139. <suiteXmlFiles>
  140. <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
  141. </suiteXmlFiles>
  142. </configuration>
  143. </plugin>
  144. </plugins>
  145. </build>
  146. <profiles>
  147. <profile>
  148. <id>native-image</id>
  149. <activation>
  150. <activeByDefault>false</activeByDefault>
  151. </activation>
  152. <build>
  153. <plugins>
  154. <plugin>
  155. <groupId>org.apache.maven.plugins</groupId>
  156. <artifactId>maven-compiler-plugin</artifactId>
  157. <version>3.5.1</version>
  158. <configuration>
  159. <annotationProcessors>
  160. cn.binarywang.wx.graal.GraalProcessor,lombok.launch.AnnotationProcessorHider$AnnotationProcessor,lombok.launch.AnnotationProcessorHider$ClaimingProcessor
  161. </annotationProcessors>
  162. <annotationProcessorPaths>
  163. <path>
  164. <groupId>com.github.binarywang</groupId>
  165. <artifactId>weixin-graal</artifactId>
  166. <version>${project.version}</version>
  167. </path>
  168. </annotationProcessorPaths>
  169. </configuration>
  170. </plugin>
  171. </plugins>
  172. </build>
  173. </profile>
  174. </profiles>
  175. </project>