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