pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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. </properties>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-jdbc</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-tomcat</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-context</artifactId>
  43. </dependency>
  44. <!-- redis -->
  45. <dependency>
  46. <groupId>org.springframework.data</groupId>
  47. <artifactId>spring-data-redis</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>redis.clients</groupId>
  51. <artifactId>jedis</artifactId>
  52. <version>3.3.0</version>
  53. </dependency>
  54. <!-- druid数据库连接池 -->
  55. <dependency>
  56. <groupId>com.alibaba</groupId>
  57. <artifactId>druid</artifactId>
  58. <version>1.2.3</version>
  59. </dependency>
  60. <!-- mysql数据库 -->
  61. <dependency>
  62. <groupId>mysql</groupId>
  63. <artifactId>mysql-connector-java</artifactId>
  64. <version>8.0.22</version>
  65. </dependency>
  66. <!--Mybatis -->
  67. <dependency>
  68. <groupId>org.mybatis</groupId>
  69. <artifactId>mybatis</artifactId>
  70. <version>${mybatis.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.mybatis</groupId>
  74. <artifactId>mybatis-spring</artifactId>
  75. <version>${mybatis.spring.version}</version>
  76. </dependency>
  77. <!--分页插件 -->
  78. <dependency>
  79. <groupId>com.github.pagehelper</groupId>
  80. <artifactId>pagehelper</artifactId>
  81. <version>${pagehelper.version}</version>
  82. </dependency>
  83. <!--通用Mapper -->
  84. <dependency>
  85. <groupId>tk.mybatis</groupId>
  86. <artifactId>mapper</artifactId>
  87. <version>${mapper.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.commons</groupId>
  91. <artifactId>commons-lang3</artifactId>
  92. <version>3.11</version>
  93. </dependency>
  94. <!--Swagger2 -->
  95. <!--在线文档 -->
  96. <dependency>
  97. <groupId>io.springfox</groupId>
  98. <artifactId>springfox-swagger2</artifactId>
  99. <version>2.9.2</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>io.springfox</groupId>
  103. <artifactId>springfox-swagger-ui</artifactId>
  104. <version>2.6.1</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>javax.validation</groupId>
  108. <artifactId>validation-api</artifactId>
  109. </dependency>
  110. <!-- 日志相关 -->
  111. <dependency>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-starter-aop</artifactId>
  114. </dependency>
  115. <!-- sip协议栈 -->
  116. <dependency>
  117. <groupId>javax.sip</groupId>
  118. <artifactId>jain-sip-ri</artifactId>
  119. <version>1.3.0-92</version>
  120. <scope>system</scope>
  121. <systemPath>${project.basedir}/libs/jain-sip-ri-1.3.0-92.jar</systemPath>
  122. </dependency>
  123. <dependency>
  124. <groupId>log4j</groupId>
  125. <artifactId>log4j</artifactId>
  126. <version>1.2.17</version>
  127. </dependency>
  128. <!-- xml解析库 -->
  129. <dependency>
  130. <groupId>org.dom4j</groupId>
  131. <artifactId>dom4j</artifactId>
  132. <version>2.1.3</version>
  133. </dependency>
  134. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  135. <dependency>
  136. <groupId>com.alibaba</groupId>
  137. <artifactId>fastjson</artifactId>
  138. <version>1.2.73</version>
  139. </dependency>
  140. <!--Guava是一种基于开源的Java库-->
  141. <dependency>
  142. <groupId>com.google.guava</groupId>
  143. <artifactId>guava</artifactId>
  144. <version>30.0-jre</version>
  145. </dependency>
  146. <!-- okhttp -->
  147. <dependency>
  148. <groupId>com.squareup.okhttp3</groupId>
  149. <artifactId>okhttp</artifactId>
  150. <version>4.9.0</version>
  151. </dependency>
  152. </dependencies>
  153. <build>
  154. <finalName>wvp-2.5.8</finalName>
  155. <plugins>
  156. <plugin>
  157. <groupId>org.springframework.boot</groupId>
  158. <artifactId>spring-boot-maven-plugin</artifactId>
  159. <configuration>
  160. <includeSystemScope>true</includeSystemScope>
  161. </configuration>
  162. </plugin>
  163. <plugin>
  164. <groupId>org.apache.maven.plugins</groupId>
  165. <artifactId>maven-compiler-plugin</artifactId>
  166. <configuration>
  167. <source>1.8</source>
  168. <target>1.8</target>
  169. </configuration>
  170. </plugin>
  171. <plugin>
  172. <groupId>org.apache.maven.plugins</groupId>
  173. <artifactId>maven-surefire-plugin</artifactId>
  174. </plugin>
  175. </plugins>
  176. </build>
  177. </project>