dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

10 лет назад
10 лет назад
10 лет назад
7 лет назад
10 лет назад
10 лет назад
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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" xmlns="http://maven.apache.org/POM/4.0.0">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.github.binarywang</groupId>
  8. <artifactId>weixin-java-parent</artifactId>
  9. <version>2.7.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>weixin-java-cp</artifactId>
  12. <name>WeiXin Java Tools - CP</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>redis.clients</groupId>
  22. <artifactId>jedis</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.testng</groupId>
  26. <artifactId>testng</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.mockito</groupId>
  31. <artifactId>mockito-all</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.google.inject</groupId>
  36. <artifactId>guice</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.eclipse.jetty</groupId>
  41. <artifactId>jetty-server</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.eclipse.jetty</groupId>
  46. <artifactId>jetty-servlet</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.apache.maven.plugins</groupId>
  54. <artifactId>maven-surefire-plugin</artifactId>
  55. <configuration>
  56. <suiteXmlFiles>
  57. <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
  58. </suiteXmlFiles>
  59. </configuration>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </project>