pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.github.binarywang</groupId>
  8. <artifactId>wx-java</artifactId>
  9. <version>4.6.0</version>
  10. </parent>
  11. <artifactId>weixin-java-channel</artifactId>
  12. <name>WxJava - Channel Java SDK</name>
  13. <description>微信视频号 Java SDK</description>
  14. <properties>
  15. <jackson.version>2.15.0</jackson.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.github.binarywang</groupId>
  20. <artifactId>weixin-java-common</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.jodd</groupId>
  25. <artifactId>jodd-http</artifactId>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.fasterxml.jackson.core</groupId>
  30. <artifactId>jackson-core</artifactId>
  31. <version>${jackson.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.fasterxml.jackson.core</groupId>
  35. <artifactId>jackson-annotations</artifactId>
  36. <version>${jackson.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.fasterxml.jackson.dataformat</groupId>
  40. <artifactId>jackson-dataformat-xml</artifactId>
  41. <version>${jackson.version}</version>
  42. <optional>true</optional>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.bouncycastle</groupId>
  46. <artifactId>bcpkix-jdk15on</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.projectlombok</groupId>
  50. <artifactId>lombok</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.redisson</groupId>
  54. <artifactId>redisson</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.squareup.okhttp3</groupId>
  58. <artifactId>okhttp</artifactId>
  59. <scope>provided</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.testng</groupId>
  63. <artifactId>testng</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>ch.qos.logback</groupId>
  68. <artifactId>logback-classic</artifactId>
  69. <scope>test</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.google.inject</groupId>
  73. <artifactId>guice</artifactId>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.eclipse.jetty</groupId>
  78. <artifactId>jetty-server</artifactId>
  79. <scope>test</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.eclipse.jetty</groupId>
  83. <artifactId>jetty-servlet</artifactId>
  84. <scope>test</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.assertj</groupId>
  88. <artifactId>assertj-guava</artifactId>
  89. <scope>test</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>redis.clients</groupId>
  93. <artifactId>jedis</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.github.jedis-lock</groupId>
  97. <artifactId>jedis-lock</artifactId>
  98. <optional>true</optional>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.mockito</groupId>
  102. <artifactId>mockito-core</artifactId>
  103. <version>3.3.3</version>
  104. <scope>test</scope>
  105. </dependency>
  106. </dependencies>
  107. <build>
  108. <plugins>
  109. <plugin>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-surefire-plugin</artifactId>
  112. <configuration>
  113. <suiteXmlFiles>
  114. <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
  115. </suiteXmlFiles>
  116. </configuration>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. <profiles>
  121. <profile>
  122. <id>native-image</id>
  123. <activation>
  124. <activeByDefault>false</activeByDefault>
  125. </activation>
  126. <build>
  127. <plugins>
  128. <plugin>
  129. <groupId>org.apache.maven.plugins</groupId>
  130. <artifactId>maven-compiler-plugin</artifactId>
  131. <version>3.5.1</version>
  132. <configuration>
  133. <annotationProcessors>
  134. com.github.binarywang.wx.graal.GraalProcessor,lombok.launch.AnnotationProcessorHider$AnnotationProcessor,lombok.launch.AnnotationProcessorHider$ClaimingProcessor
  135. </annotationProcessors>
  136. <annotationProcessorPaths>
  137. <path>
  138. <groupId>com.github.binarywang</groupId>
  139. <artifactId>weixin-graal</artifactId>
  140. <version>${project.version}</version>
  141. </path>
  142. </annotationProcessorPaths>
  143. </configuration>
  144. </plugin>
  145. </plugins>
  146. </build>
  147. </profile>
  148. </profiles>
  149. </project>