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.

74 lines
2.5 KiB

  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.github.binarywang</groupId>
  8. <artifactId>weixin-java-parent</artifactId>
  9. <version>2.0.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>weixin-java-mp</artifactId>
  12. <name>WeiXin Java Tools - MP</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>junit</groupId>
  22. <artifactId>junit</artifactId>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.testng</groupId>
  27. <artifactId>testng</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.mockito</groupId>
  32. <artifactId>mockito-all</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.google.inject</groupId>
  37. <artifactId>guice</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.eclipse.jetty</groupId>
  42. <artifactId>jetty-server</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.eclipse.jetty</groupId>
  47. <artifactId>jetty-servlet</artifactId>
  48. <scope>test</scope>
  49. </dependency><!-- https://mvnrepository.com/artifact/joda-time/joda-time -->
  50. <dependency>
  51. <groupId>joda-time</groupId>
  52. <artifactId>joda-time</artifactId>
  53. <version>2.9.4</version>
  54. <scope>test</scope>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-surefire-plugin</artifactId>
  62. <configuration>
  63. <suiteXmlFiles>
  64. <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
  65. </suiteXmlFiles>
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>