pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <?xml version="1.0"?>
  2. <project
  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. xmlns="http://maven.apache.org/POM/4.0.0">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>com.github.binarywang</groupId>
  9. <artifactId>wx-java</artifactId>
  10. <version>3.7.0</version>
  11. </parent>
  12. <artifactId>weixin-java-miniapp</artifactId>
  13. <name>WxJava - MiniApp Java SDK</name>
  14. <description>微信小程序 Java SDK</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.github.binarywang</groupId>
  18. <artifactId>weixin-java-common</artifactId>
  19. <version>${project.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.jodd</groupId>
  23. <artifactId>jodd-http</artifactId>
  24. <scope>provided</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.squareup.okhttp3</groupId>
  28. <artifactId>okhttp</artifactId>
  29. <scope>provided</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.testng</groupId>
  33. <artifactId>testng</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>ch.qos.logback</groupId>
  38. <artifactId>logback-classic</artifactId>
  39. <scope>test</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.google.inject</groupId>
  43. <artifactId>guice</artifactId>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.eclipse.jetty</groupId>
  48. <artifactId>jetty-server</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.eclipse.jetty</groupId>
  53. <artifactId>jetty-servlet</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>joda-time</groupId>
  58. <artifactId>joda-time</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.assertj</groupId>
  63. <artifactId>assertj-guava</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>redis.clients</groupId>
  68. <artifactId>jedis</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.bouncycastle</groupId>
  72. <artifactId>bcpkix-jdk15on</artifactId>
  73. <version>1.59</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.projectlombok</groupId>
  77. <artifactId>lombok</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.github.jedis-lock</groupId>
  81. <artifactId>jedis-lock</artifactId>
  82. <version>1.0.0</version>
  83. <optional>true</optional>
  84. </dependency>
  85. </dependencies>
  86. <build>
  87. <plugins>
  88. <plugin>
  89. <groupId>org.apache.maven.plugins</groupId>
  90. <artifactId>maven-surefire-plugin</artifactId>
  91. <configuration>
  92. <suiteXmlFiles>
  93. <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
  94. </suiteXmlFiles>
  95. </configuration>
  96. </plugin>
  97. </plugins>
  98. </build>
  99. <profiles>
  100. <profile>
  101. <id>native-image</id>
  102. <activation>
  103. <activeByDefault>false</activeByDefault>
  104. </activation>
  105. <build>
  106. <plugins>
  107. <plugin>
  108. <groupId>org.apache.maven.plugins</groupId>
  109. <artifactId>maven-compiler-plugin</artifactId>
  110. <version>3.5.1</version>
  111. <configuration>
  112. <annotationProcessors>
  113. cn.binarywang.wx.graal.GraalProcessor,lombok.launch.AnnotationProcessorHider$AnnotationProcessor,lombok.launch.AnnotationProcessorHider$ClaimingProcessor
  114. </annotationProcessors>
  115. <annotationProcessorPaths>
  116. <path>
  117. <groupId>com.github.binarywang</groupId>
  118. <artifactId>weixin-graal</artifactId>
  119. <version>${project.version}</version>
  120. </path>
  121. </annotationProcessorPaths>
  122. </configuration>
  123. </plugin>
  124. </plugins>
  125. </build>
  126. </profile>
  127. </profiles>
  128. </project>