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.

135 line
3.9 KiB

  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.8.0.A</version>
  11. </parent>
  12. <artifactId>weixin-java-cp</artifactId>
  13. <name>WxJava - CP 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>redis.clients</groupId>
  33. <artifactId>jedis</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.slf4j</groupId>
  37. <artifactId>slf4j-api</artifactId>
  38. </dependency>
  39. <!--分布式锁支持-->
  40. <dependency>
  41. <groupId>org.redisson</groupId>
  42. <artifactId>redisson</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.testng</groupId>
  46. <artifactId>testng</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.mockito</groupId>
  51. <artifactId>mockito-all</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.google.inject</groupId>
  56. <artifactId>guice</artifactId>
  57. <scope>test</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.eclipse.jetty</groupId>
  61. <artifactId>jetty-server</artifactId>
  62. <scope>test</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.eclipse.jetty</groupId>
  66. <artifactId>jetty-servlet</artifactId>
  67. <scope>test</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>ch.qos.logback</groupId>
  71. <artifactId>logback-classic</artifactId>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.projectlombok</groupId>
  76. <artifactId>lombok</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.assertj</groupId>
  80. <artifactId>assertj-guava</artifactId>
  81. <scope>test</scope>
  82. </dependency>
  83. </dependencies>
  84. <build>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.apache.maven.plugins</groupId>
  88. <artifactId>maven-surefire-plugin</artifactId>
  89. <configuration>
  90. <suiteXmlFiles>
  91. <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
  92. </suiteXmlFiles>
  93. </configuration>
  94. </plugin>
  95. </plugins>
  96. </build>
  97. <profiles>
  98. <profile>
  99. <id>native-image</id>
  100. <activation>
  101. <activeByDefault>false</activeByDefault>
  102. </activation>
  103. <build>
  104. <plugins>
  105. <plugin>
  106. <groupId>org.apache.maven.plugins</groupId>
  107. <artifactId>maven-compiler-plugin</artifactId>
  108. <version>3.5.1</version>
  109. <configuration>
  110. <annotationProcessors>
  111. cn.binarywang.wx.graal.GraalProcessor,lombok.launch.AnnotationProcessorHider$AnnotationProcessor,lombok.launch.AnnotationProcessorHider$ClaimingProcessor
  112. </annotationProcessors>
  113. <annotationProcessorPaths>
  114. <path>
  115. <groupId>com.github.binarywang</groupId>
  116. <artifactId>weixin-graal</artifactId>
  117. <version>${project.version}</version>
  118. </path>
  119. </annotationProcessorPaths>
  120. </configuration>
  121. </plugin>
  122. </plugins>
  123. </build>
  124. </profile>
  125. </profiles>
  126. </project>