pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>cn.wildfirechat</groupId>
  6. <artifactId>open-platform-server</artifactId>
  7. <version>0.3</version>
  8. <packaging>jar</packaging>
  9. <name>app</name>
  10. <description>Demo project for Wildfire chat app server</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.6.7</version>
  15. <relativePath/> <!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <log4j2.version>2.17.1</log4j2.version>
  22. <wfc.sdk.version>0.87</wfc.sdk.version>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-web</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-test</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-data-rest</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-data-jpa</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.h2database</groupId>
  48. <artifactId>h2</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>mysql</groupId>
  52. <artifactId>mysql-connector-java</artifactId>
  53. <version>8.0.16</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.google.code.gson</groupId>
  57. <artifactId>gson</artifactId>
  58. <version>2.8.2</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.google.protobuf</groupId>
  62. <artifactId>protobuf-java</artifactId>
  63. <version>2.5.0</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.logging.log4j</groupId>
  67. <artifactId>log4j-slf4j-impl</artifactId>
  68. <version>${log4j2.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.logging.log4j</groupId>
  72. <artifactId>log4j-api</artifactId>
  73. <version>${log4j2.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.logging.log4j</groupId>
  77. <artifactId>log4j-core</artifactId>
  78. <version>${log4j2.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.logging.log4j</groupId>
  82. <artifactId>log4j-to-slf4j</artifactId>
  83. <version>${log4j2.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>commons-io</groupId>
  87. <artifactId>commons-io</artifactId>
  88. <version>2.5</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.googlecode.json-simple</groupId>
  92. <artifactId>json-simple</artifactId>
  93. <version>1.1.1</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.slf4j</groupId>
  97. <artifactId>slf4j-api</artifactId>
  98. <version>1.7.5</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.slf4j</groupId>
  102. <artifactId>slf4j-log4j12</artifactId>
  103. <version>1.7.5</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>commons-httpclient</groupId>
  107. <artifactId>commons-httpclient</artifactId>
  108. <version>3.1</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.httpcomponents</groupId>
  112. <artifactId>httpclient</artifactId>
  113. <version>4.5.6</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>uk.org.lidalia</groupId>
  117. <artifactId>slf4j-test</artifactId>
  118. <version>1.0.0-jdk6</version>
  119. <scope>test</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.mockito</groupId>
  123. <artifactId>mockito-all</artifactId>
  124. <version>1.9.5</version>
  125. <type>jar</type>
  126. <scope>test</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>cn.wildfirechat</groupId>
  130. <artifactId>sdk</artifactId>
  131. <version>${wfc.sdk.version}</version>
  132. <scope>system</scope>
  133. <systemPath>${project.basedir}/src/lib/sdk-${wfc.sdk.version}.jar</systemPath>
  134. </dependency>
  135. <dependency>
  136. <groupId>cn.wildfirechat</groupId>
  137. <artifactId>common</artifactId>
  138. <version>${wfc.sdk.version}</version>
  139. <scope>system</scope>
  140. <systemPath>${project.basedir}/src/lib/common-${wfc.sdk.version}.jar</systemPath>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.google.guava</groupId>
  144. <artifactId>guava</artifactId>
  145. <version>25.1-jre</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.apache.shiro</groupId>
  149. <artifactId>shiro-spring</artifactId>
  150. <version>1.7.1</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.springframework.boot</groupId>
  154. <artifactId>spring-boot-starter-mail</artifactId>
  155. </dependency>
  156. <dependency>
  157. <groupId>com.googlecode.json-simple</groupId>
  158. <artifactId>json-simple</artifactId>
  159. <version>1.1.1</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.qiniu</groupId>
  163. <artifactId>qiniu-java-sdk</artifactId>
  164. <version>7.3.0</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>com.aliyun.oss</groupId>
  168. <artifactId>aliyun-sdk-oss</artifactId>
  169. <version>3.10.2</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>io.minio</groupId>
  173. <artifactId>minio</artifactId>
  174. <version>8.5.10</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>com.squareup.okhttp3</groupId>
  178. <artifactId>okhttp</artifactId>
  179. <version>4.12.0</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>com.qcloud</groupId>
  183. <artifactId>cos_api</artifactId>
  184. <version>5.6.28</version>
  185. </dependency>
  186. </dependencies>
  187. <build>
  188. <plugins>
  189. <plugin>
  190. <groupId>org.springframework.boot</groupId>
  191. <artifactId>spring-boot-maven-plugin</artifactId>
  192. <configuration>
  193. <includeSystemScope>true</includeSystemScope>
  194. </configuration>
  195. </plugin>
  196. </plugins>
  197. </build>
  198. </project>