pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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>app</artifactId>
  7. <version>0.41</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.0.6.RELEASE</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. <wfc.sdk.version>0.37</wfc.sdk.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-test</artifactId>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-data-rest</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-data-jpa</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.h2database</groupId>
  47. <artifactId>h2</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>mysql</groupId>
  51. <artifactId>mysql-connector-java</artifactId>
  52. <version>8.0.11</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.google.code.gson</groupId>
  56. <artifactId>gson</artifactId>
  57. <version>2.8.2</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>commons-io</groupId>
  61. <artifactId>commons-io</artifactId>
  62. <version>2.5</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.googlecode.json-simple</groupId>
  66. <artifactId>json-simple</artifactId>
  67. <version>1.1.1</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.slf4j</groupId>
  71. <artifactId>slf4j-api</artifactId>
  72. <version>1.7.5</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.slf4j</groupId>
  76. <artifactId>slf4j-log4j12</artifactId>
  77. <version>1.7.5</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>commons-httpclient</groupId>
  81. <artifactId>commons-httpclient</artifactId>
  82. <version>3.1</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>uk.org.lidalia</groupId>
  86. <artifactId>slf4j-test</artifactId>
  87. <version>1.0.0-jdk6</version>
  88. <scope>test</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.mockito</groupId>
  92. <artifactId>mockito-all</artifactId>
  93. <version>1.9.5</version>
  94. <type>jar</type>
  95. <scope>test</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.github.qcloudsms</groupId>
  99. <artifactId>qcloudsms</artifactId>
  100. <version>1.0.5</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>cn.wildfirechat</groupId>
  104. <artifactId>sdk</artifactId>
  105. <version>${wfc.sdk.version}</version>
  106. <scope>system</scope>
  107. <systemPath>${project.basedir}/src/lib/sdk-${wfc.sdk.version}.jar</systemPath>
  108. </dependency>
  109. <dependency>
  110. <groupId>cn.wildfirechat</groupId>
  111. <artifactId>common</artifactId>
  112. <version>${wfc.sdk.version}</version>
  113. <scope>system</scope>
  114. <systemPath>${project.basedir}/src/lib/common-${wfc.sdk.version}.jar</systemPath>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.aliyun</groupId>
  118. <artifactId>aliyun-java-sdk-core</artifactId>
  119. <version>4.1.0</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.apache.shiro</groupId>
  123. <artifactId>shiro-spring</artifactId>
  124. <version>1.3.2</version>
  125. </dependency>
  126. </dependencies>
  127. <build>
  128. <plugins>
  129. <plugin>
  130. <groupId>org.springframework.boot</groupId>
  131. <artifactId>spring-boot-maven-plugin</artifactId>
  132. <configuration>
  133. <includeSystemScope>true</includeSystemScope>
  134. </configuration>
  135. </plugin>
  136. </plugins>
  137. </build>
  138. </project>