dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

64 rader
1.8 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.5.4.BETA</version>
  10. </parent>
  11. <artifactId>weixin-java-common</artifactId>
  12. <name>WeiXin Java Tools - Common</name>
  13. <description>微信公众号、企业号Java SDK Common</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.thoughtworks.xstream</groupId>
  17. <artifactId>xstream</artifactId>
  18. <version>1.4.7</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.testng</groupId>
  22. <artifactId>testng</artifactId>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.mockito</groupId>
  27. <artifactId>mockito-all</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.google.inject</groupId>
  32. <artifactId>guice</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.eclipse.jetty</groupId>
  37. <artifactId>jetty-server</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.eclipse.jetty</groupId>
  42. <artifactId>jetty-servlet</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-surefire-plugin</artifactId>
  51. <configuration>
  52. <suiteXmlFiles>
  53. <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
  54. </suiteXmlFiles>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>