dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

84 行
2.4 KiB

  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.4.8.BETA</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>
  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. <dependency>
  57. <groupId>io.rest-assured</groupId>
  58. <artifactId>xml-path</artifactId>
  59. <version>3.0.1</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.github.binarywang</groupId>
  63. <artifactId>qrcode-utils</artifactId>
  64. <version>1.0</version>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.apache.maven.plugins</groupId>
  71. <artifactId>maven-surefire-plugin</artifactId>
  72. <configuration>
  73. <suiteXmlFiles>
  74. <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
  75. </suiteXmlFiles>
  76. </configuration>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. </project>