pom.xml 6.1 KB

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