pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.github.binarywang</groupId>
  7. <artifactId>wx-java</artifactId>
  8. <version>4.7.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>weixin-java-pay</artifactId>
  12. <name>WxJava - PAY Java SDK</name>
  13. <description>微信支付 Java SDK</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.github.binarywang</groupId>
  17. <artifactId>weixin-java-common</artifactId>
  18. <version>${project.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.github.binarywang</groupId>
  22. <artifactId>qrcode-utils</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.jodd</groupId>
  26. <artifactId>jodd-http</artifactId>
  27. <scope>provided</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.jodd</groupId>
  31. <artifactId>jodd-util</artifactId>
  32. <version>6.1.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.commons</groupId>
  36. <artifactId>commons-lang3</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.bouncycastle</groupId>
  40. <artifactId>bcpkix-jdk18on</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>ch.qos.logback</groupId>
  44. <artifactId>logback-classic</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.testng</groupId>
  49. <artifactId>testng</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.assertj</groupId>
  54. <artifactId>assertj-guava</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.google.inject</groupId>
  59. <artifactId>guice</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.projectlombok</groupId>
  64. <artifactId>lombok</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.google.code.gson</groupId>
  68. <artifactId>gson</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>javax.servlet</groupId>
  72. <artifactId>javax.servlet-api</artifactId>
  73. <version>4.0.1</version>
  74. <optional>true</optional>
  75. <scope>provided</scope>
  76. </dependency>
  77. </dependencies>
  78. <profiles>
  79. <profile>
  80. <id>native-image</id>
  81. <activation>
  82. <activeByDefault>false</activeByDefault>
  83. </activation>
  84. <build>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.apache.maven.plugins</groupId>
  88. <artifactId>maven-compiler-plugin</artifactId>
  89. <version>3.5.1</version>
  90. <configuration>
  91. <annotationProcessors>
  92. com.github.binarywang.wx.graal.GraalProcessor,lombok.launch.AnnotationProcessorHider$AnnotationProcessor,lombok.launch.AnnotationProcessorHider$ClaimingProcessor
  93. </annotationProcessors>
  94. <annotationProcessorPaths>
  95. <path>
  96. <groupId>com.github.binarywang</groupId>
  97. <artifactId>weixin-graal</artifactId>
  98. <version>${project.version}</version>
  99. </path>
  100. </annotationProcessorPaths>
  101. </configuration>
  102. </plugin>
  103. </plugins>
  104. </build>
  105. </profile>
  106. </profiles>
  107. </project>