dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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>me.chanjar</groupId>
  7. <artifactId>weixin-java-tools</artifactId>
  8. <version>1.0.0</version>
  9. <name>WeiXin Java Tools</name>
  10. <url>https://github.com/chanjarster/weixin-java</url>
  11. <description>用于开发微信公众号的Java工具</description>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <downloadJavadocs>true</downloadJavadocs>
  15. <downloadSources>true</downloadSources>
  16. <httpclient.version>4.3.5</httpclient.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. <version>4.11</version>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.httpcomponents</groupId>
  27. <artifactId>fluent-hc</artifactId>
  28. <version>${httpclient.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.httpcomponents</groupId>
  32. <artifactId>httpmime</artifactId>
  33. <version>${httpclient.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>javax.xml.bind</groupId>
  37. <artifactId>jaxb-api</artifactId>
  38. <version>2.2.7</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.sun.xml.bind</groupId>
  42. <artifactId>jaxb-impl</artifactId>
  43. <version>2.2.7</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.oltu.oauth2</groupId>
  47. <artifactId>org.apache.oltu.oauth2.client</artifactId>
  48. <version>1.0.0</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.google.code.gson</groupId>
  52. <artifactId>gson</artifactId>
  53. <version>2.2.2</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.testng</groupId>
  57. <artifactId>testng</artifactId>
  58. <version>6.8.7</version>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.mockito</groupId>
  63. <artifactId>mockito-all</artifactId>
  64. <version>1.9.5</version>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.google.inject</groupId>
  69. <artifactId>guice</artifactId>
  70. <version>3.0</version>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.commons</groupId>
  75. <artifactId>commons-lang3</artifactId>
  76. <version>3.1</version>
  77. </dependency>
  78. </dependencies>
  79. <build>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-surefire-plugin</artifactId>
  84. <version>2.17</version>
  85. <configuration>
  86. <suiteXmlFiles>
  87. <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
  88. </suiteXmlFiles>
  89. </configuration>
  90. </plugin>
  91. <plugin>
  92. <groupId>org.apache.maven.plugins</groupId>
  93. <artifactId>maven-source-plugin</artifactId>
  94. <version>2.1.2</version>
  95. <executions>
  96. <execution>
  97. <id>attach-sources</id>
  98. <goals>
  99. <goal>jar</goal>
  100. </goals>
  101. </execution>
  102. </executions>
  103. </plugin>
  104. <plugin>
  105. <groupId>org.apache.maven.plugins</groupId>
  106. <artifactId>maven-javadoc-plugin</artifactId>
  107. <version>2.9.1</version>
  108. <executions>
  109. <execution>
  110. <id>attach-javadocs</id>
  111. <goals>
  112. <goal>jar</goal>
  113. </goals>
  114. </execution>
  115. </executions>
  116. <configuration>
  117. <charset>UTF-8</charset>
  118. <locale>zh_CN</locale>
  119. </configuration>
  120. </plugin>
  121. </plugins>
  122. </build>
  123. </project>