dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

119 rivejä
3.4 KiB

  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>3.7.0.B</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. <build>
  15. <plugins>
  16. <plugin>
  17. <groupId>org.apache.maven.plugins</groupId>
  18. <artifactId>maven-compiler-plugin</artifactId>
  19. <configuration>
  20. <source>8</source>
  21. <target>8</target>
  22. </configuration>
  23. </plugin>
  24. </plugins>
  25. </build>
  26. <dependencies>
  27. <dependency>
  28. <groupId>com.github.binarywang</groupId>
  29. <artifactId>weixin-java-common</artifactId>
  30. <version>${project.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.github.binarywang</groupId>
  34. <artifactId>qrcode-utils</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.jodd</groupId>
  38. <artifactId>jodd-http</artifactId>
  39. <scope>compile</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.commons</groupId>
  43. <artifactId>commons-lang3</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>commons-beanutils</groupId>
  47. <artifactId>commons-beanutils</artifactId>
  48. <version>1.9.3</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.bouncycastle</groupId>
  52. <artifactId>bcpkix-jdk15on</artifactId>
  53. <version>1.59</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>ch.qos.logback</groupId>
  57. <artifactId>logback-classic</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.testng</groupId>
  62. <artifactId>testng</artifactId>
  63. <scope>test</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.assertj</groupId>
  67. <artifactId>assertj-guava</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.google.inject</groupId>
  72. <artifactId>guice</artifactId>
  73. <scope>test</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.projectlombok</groupId>
  77. <artifactId>lombok</artifactId>
  78. </dependency>
  79. </dependencies>
  80. <profiles>
  81. <profile>
  82. <id>native-image</id>
  83. <activation>
  84. <activeByDefault>false</activeByDefault>
  85. </activation>
  86. <build>
  87. <plugins>
  88. <plugin>
  89. <groupId>org.apache.maven.plugins</groupId>
  90. <artifactId>maven-compiler-plugin</artifactId>
  91. <version>3.5.1</version>
  92. <configuration>
  93. <annotationProcessors>
  94. cn.binarywang.wx.graal.GraalProcessor,lombok.launch.AnnotationProcessorHider$AnnotationProcessor,lombok.launch.AnnotationProcessorHider$ClaimingProcessor
  95. </annotationProcessors>
  96. <annotationProcessorPaths>
  97. <path>
  98. <groupId>com.github.binarywang</groupId>
  99. <artifactId>weixin-graal</artifactId>
  100. <version>${project.version}</version>
  101. </path>
  102. </annotationProcessorPaths>
  103. </configuration>
  104. </plugin>
  105. </plugins>
  106. </build>
  107. </profile>
  108. </profiles>
  109. </project>