dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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"
  5. xmlns="http://maven.apache.org/POM/4.0.0">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>com.github.binarywang</groupId>
  9. <artifactId>weixin-java-parent</artifactId>
  10. <version>2.9.2.BETA</version>
  11. </parent>
  12. <artifactId>weixin-java-miniapp</artifactId>
  13. <name>WeiXin Java Tools - MiniApp</name>
  14. <description>微信小程序Java SDK</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.github.binarywang</groupId>
  18. <artifactId>weixin-java-common</artifactId>
  19. <version>${project.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.jodd</groupId>
  23. <artifactId>jodd-http</artifactId>
  24. <scope>provided</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.squareup.okhttp3</groupId>
  28. <artifactId>okhttp</artifactId>
  29. <scope>provided</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.testng</groupId>
  33. <artifactId>testng</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>ch.qos.logback</groupId>
  38. <artifactId>logback-classic</artifactId>
  39. <scope>test</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.google.inject</groupId>
  43. <artifactId>guice</artifactId>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.eclipse.jetty</groupId>
  48. <artifactId>jetty-server</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.eclipse.jetty</groupId>
  53. <artifactId>jetty-servlet</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>joda-time</groupId>
  58. <artifactId>joda-time</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>redis.clients</groupId>
  63. <artifactId>jedis</artifactId>
  64. </dependency>
  65. </dependencies>
  66. <build>
  67. <plugins>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-surefire-plugin</artifactId>
  71. <configuration>
  72. <suiteXmlFiles>
  73. <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
  74. </suiteXmlFiles>
  75. </configuration>
  76. </plugin>
  77. </plugins>
  78. </build>
  79. </project>