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.

67 lines
1.9 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. <groupId>chanjarster.weixin</groupId>
  7. <artifactId>weixin-java</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <name>WeiXin Java Toolset</name>
  10. <url>https://github.com/chanjarster/weixin-java</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <downloadJavadocs>true</downloadJavadocs>
  14. <downloadSources>true</downloadSources>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>junit</groupId>
  19. <artifactId>junit</artifactId>
  20. <version>4.11</version>
  21. <scope>test</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.apache.httpcomponents</groupId>
  25. <artifactId>fluent-hc</artifactId>
  26. <version>4.3.5</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>javax.xml.bind</groupId>
  30. <artifactId>jaxb-api</artifactId>
  31. <version>2.2.7</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.sun.xml.bind</groupId>
  35. <artifactId>jaxb-impl</artifactId>
  36. <version>2.2.7</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.oltu.oauth2</groupId>
  40. <artifactId>org.apache.oltu.oauth2.client</artifactId>
  41. <version>1.0.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.google.code.gson</groupId>
  45. <artifactId>gson</artifactId>
  46. <version>2.2.2</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.testng</groupId>
  50. <artifactId>testng</artifactId>
  51. <version>6.8.7</version>
  52. <scope>test</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.mockito</groupId>
  56. <artifactId>mockito-all</artifactId>
  57. <version>1.9.5</version>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.commons</groupId>
  62. <artifactId>commons-lang3</artifactId>
  63. <version>3.1</version>
  64. </dependency>
  65. </dependencies>
  66. </project>