pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.3.5.RELEASE</version>
  10. </parent>
  11. <groupId>com.genersoft</groupId>
  12. <artifactId>wvp</artifactId>
  13. <name>web video platform</name>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <!-- 依赖版本 -->
  17. <mapper.version>4.1.5</mapper.version>
  18. <mybatis.version>3.5.5</mybatis.version>
  19. <mybatis.spring.version>2.0.5</mybatis.spring.version>
  20. <pagehelper.version>5.2.0</pagehelper.version>
  21. <snippetsDirectory>${project.build.directory}/generated-snippets</snippetsDirectory>
  22. <asciidoctor.input.directory>${project.basedir}/docs/asciidoc</asciidoctor.input.directory>
  23. <generated.asciidoc.directory>${project.build.directory}/asciidoc</generated.asciidoc.directory>
  24. <asciidoctor.html.output.directory>${project.build.directory}/asciidoc/html</asciidoctor.html.output.directory>
  25. <asciidoctor.pdf.output.directory>${project.build.directory}/asciidoc/pdf</asciidoctor.pdf.output.directory>
  26. <gson.version>2.8.6</gson.version>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-jdbc</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-tomcat</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-web</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework</groupId>
  43. <artifactId>spring-context</artifactId>
  44. </dependency>
  45. <!-- redis -->
  46. <dependency>
  47. <groupId>org.springframework.data</groupId>
  48. <artifactId>spring-data-redis</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>redis.clients</groupId>
  52. <artifactId>jedis</artifactId>
  53. <version>3.3.0</version>
  54. </dependency>
  55. <!-- druid数据库连接池 -->
  56. <dependency>
  57. <groupId>com.alibaba</groupId>
  58. <artifactId>druid</artifactId>
  59. <version>1.2.3</version>
  60. </dependency>
  61. <!-- mysql数据库 -->
  62. <dependency>
  63. <groupId>mysql</groupId>
  64. <artifactId>mysql-connector-java</artifactId>
  65. <version>8.0.22</version>
  66. </dependency>
  67. <!--Mybatis -->
  68. <dependency>
  69. <groupId>org.mybatis</groupId>
  70. <artifactId>mybatis</artifactId>
  71. <version>${mybatis.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.mybatis</groupId>
  75. <artifactId>mybatis-spring</artifactId>
  76. <version>${mybatis.spring.version}</version>
  77. </dependency>
  78. <!--分页插件 -->
  79. <dependency>
  80. <groupId>com.github.pagehelper</groupId>
  81. <artifactId>pagehelper</artifactId>
  82. <version>${pagehelper.version}</version>
  83. </dependency>
  84. <!--通用Mapper -->
  85. <dependency>
  86. <groupId>tk.mybatis</groupId>
  87. <artifactId>mapper</artifactId>
  88. <version>${mapper.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.commons</groupId>
  92. <artifactId>commons-lang3</artifactId>
  93. <version>3.11</version>
  94. </dependency>
  95. <!--Swagger2 -->
  96. <!--在线文档 -->
  97. <dependency>
  98. <groupId>io.springfox</groupId>
  99. <artifactId>springfox-swagger2</artifactId>
  100. <version>2.9.2</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>io.springfox</groupId>
  104. <artifactId>springfox-swagger-ui</artifactId>
  105. <version>2.6.1</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>javax.validation</groupId>
  109. <artifactId>validation-api</artifactId>
  110. </dependency>
  111. <!-- 日志相关 -->
  112. <dependency>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-starter-aop</artifactId>
  115. </dependency>
  116. <!-- sip协议栈 -->
  117. <dependency>
  118. <groupId>javax.sip</groupId>
  119. <artifactId>jain-sip-ri</artifactId>
  120. <version>1.3.0-92</version>
  121. <scope>system</scope>
  122. <systemPath>${project.basedir}/libs/jain-sip-ri-1.3.0-92.jar</systemPath>
  123. </dependency>
  124. <dependency>
  125. <groupId>log4j</groupId>
  126. <artifactId>log4j</artifactId>
  127. <version>1.2.17</version>
  128. </dependency>
  129. <!-- xml解析库 -->
  130. <dependency>
  131. <groupId>org.dom4j</groupId>
  132. <artifactId>dom4j</artifactId>
  133. <version>2.1.3</version>
  134. </dependency>
  135. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  136. <dependency>
  137. <groupId>com.alibaba</groupId>
  138. <artifactId>fastjson</artifactId>
  139. <version>1.2.73</version>
  140. </dependency>
  141. <!-- google json库 -->
  142. <dependency>
  143. <groupId>com.google.code.gson</groupId>
  144. <artifactId>gson</artifactId>
  145. </dependency>
  146. <!--Guava是一种基于开源的Java库-->
  147. <dependency>
  148. <groupId>com.google.guava</groupId>
  149. <artifactId>guava</artifactId>
  150. <version>30.0-jre</version>
  151. </dependency>
  152. <!-- okhttp -->
  153. <dependency>
  154. <groupId>com.squareup.okhttp3</groupId>
  155. <artifactId>okhttp</artifactId>
  156. <version>4.9.0</version>
  157. </dependency>
  158. </dependencies>
  159. <build>
  160. <plugins>
  161. <plugin>
  162. <groupId>org.springframework.boot</groupId>
  163. <artifactId>spring-boot-maven-plugin</artifactId>
  164. <configuration>
  165. <includeSystemScope>true</includeSystemScope>
  166. </configuration>
  167. </plugin>
  168. <plugin>
  169. <groupId>org.apache.maven.plugins</groupId>
  170. <artifactId>maven-compiler-plugin</artifactId>
  171. <configuration>
  172. <source>1.8</source>
  173. <target>1.8</target>
  174. <!--
  175. <webResources>
  176. <resource>
  177. <directory>${project.basedir}/libs</directory>
  178. <targetPath>WEB-INF/lib</targetPath>
  179. <filtering>true</filtering>
  180. <includes>
  181. <include>**/*.jar</include>
  182. </includes>
  183. </resource>
  184. </webResources>
  185. -->
  186. </configuration>
  187. </plugin>
  188. <plugin>
  189. <groupId>org.apache.maven.plugins</groupId>
  190. <artifactId>maven-surefire-plugin</artifactId>
  191. </plugin>
  192. </plugins>
  193. </build>
  194. </project>