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.

10 jaren geleden
10 jaren geleden
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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>me.chanjar</groupId>
  8. <artifactId>weixin-java-parent</artifactId>
  9. <version>1.1.5-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>me.chanjar</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. <version>6.8.7</version>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.mockito</groupId>
  33. <artifactId>mockito-all</artifactId>
  34. <version>1.9.5</version>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.google.inject</groupId>
  39. <artifactId>guice</artifactId>
  40. <version>3.0</version>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.eclipse.jetty</groupId>
  45. <artifactId>jetty-server</artifactId>
  46. <version>9.3.0.M0</version>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.eclipse.jetty</groupId>
  51. <artifactId>jetty-servlet</artifactId>
  52. <version>9.3.0.M0</version>
  53. <scope>test</scope>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-surefire-plugin</artifactId>
  61. <configuration>
  62. <suiteXmlFiles>
  63. <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
  64. </suiteXmlFiles>
  65. </configuration>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. </project>