pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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. <version>2.0.0</version>
  14. <name>web video platform</name>
  15. <repositories>
  16. <repository>
  17. <id>nexus-aliyun</id>
  18. <name>Nexus aliyun</name>
  19. <url>https://maven.aliyun.com/repository/public</url>
  20. <layout>default</layout>
  21. <snapshots>
  22. <enabled>false</enabled>
  23. </snapshots>
  24. <releases>
  25. <enabled>true</enabled>
  26. </releases>
  27. </repository>
  28. </repositories>
  29. <pluginRepositories>
  30. <pluginRepository>
  31. <id>nexus-aliyun</id>
  32. <name>Nexus aliyun</name>
  33. <url>https://maven.aliyun.com/repository/public</url>
  34. <snapshots>
  35. <enabled>false</enabled>
  36. </snapshots>
  37. <releases>
  38. <enabled>true</enabled>
  39. </releases>
  40. </pluginRepository>
  41. </pluginRepositories>
  42. <properties>
  43. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  44. <!-- 依赖版本 -->
  45. <pagehelper.version>5.2.0</pagehelper.version>
  46. <snippetsDirectory>${project.build.directory}/generated-snippets</snippetsDirectory>
  47. <asciidoctor.input.directory>${project.basedir}/docs/asciidoc</asciidoctor.input.directory>
  48. <generated.asciidoc.directory>${project.build.directory}/asciidoc</generated.asciidoc.directory>
  49. <asciidoctor.html.output.directory>${project.build.directory}/asciidoc/html</asciidoctor.html.output.directory>
  50. <asciidoctor.pdf.output.directory>${project.build.directory}/asciidoc/pdf</asciidoctor.pdf.output.directory>
  51. </properties>
  52. <dependencies>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-data-redis</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-web</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.mybatis.spring.boot</groupId>
  63. <artifactId>mybatis-spring-boot-starter</artifactId>
  64. <version>2.1.4</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-security</artifactId>
  69. </dependency>
  70. <!-- druid数据库连接池 -->
  71. <dependency>
  72. <groupId>com.alibaba</groupId>
  73. <artifactId>druid</artifactId>
  74. <version>1.2.3</version>
  75. </dependency>
  76. <!-- mysql数据库 -->
  77. <dependency>
  78. <groupId>mysql</groupId>
  79. <artifactId>mysql-connector-java</artifactId>
  80. <version>8.0.22</version>
  81. </dependency>
  82. <!-- 添加sqlite-jdbc数据库驱动 -->
  83. <dependency>
  84. <groupId>org.xerial</groupId>
  85. <artifactId>sqlite-jdbc</artifactId>
  86. <version>3.32.3.2</version>
  87. </dependency>
  88. <!--Mybatis分页插件 -->
  89. <dependency>
  90. <groupId>com.github.pagehelper</groupId>
  91. <artifactId>pagehelper-spring-boot-starter</artifactId>
  92. <version>1.2.10</version>
  93. </dependency>
  94. <!--Swagger3 -->
  95. <!--在线文档 -->
  96. <dependency>
  97. <groupId>io.springfox</groupId>
  98. <artifactId>springfox-boot-starter</artifactId>
  99. <version>3.0.0</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.github.xiaoymin</groupId>
  103. <artifactId>knife4j-spring-boot-starter</artifactId>
  104. <version>3.0.2</version>
  105. </dependency>
  106. <!--参数校验 -->
  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-91</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>log4j</groupId>
  124. <artifactId>log4j</artifactId>
  125. <version>1.2.17</version>
  126. </dependency>
  127. <!-- xml解析库 -->
  128. <dependency>
  129. <groupId>org.dom4j</groupId>
  130. <artifactId>dom4j</artifactId>
  131. <version>2.1.3</version>
  132. </dependency>
  133. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  134. <dependency>
  135. <groupId>com.alibaba</groupId>
  136. <artifactId>fastjson</artifactId>
  137. <version>1.2.73</version>
  138. </dependency>
  139. <!--Guava是一种基于开源的Java库-->
  140. <dependency>
  141. <groupId>com.google.guava</groupId>
  142. <artifactId>guava</artifactId>
  143. <version>30.0-jre</version>
  144. </dependency>
  145. <!-- okhttp -->
  146. <dependency>
  147. <groupId>com.squareup.okhttp3</groupId>
  148. <artifactId>okhttp</artifactId>
  149. <version>4.9.0</version>
  150. </dependency>
  151. </dependencies>
  152. <build>
  153. <finalName>wvp-2.0</finalName>
  154. <plugins>
  155. <plugin>
  156. <groupId>org.springframework.boot</groupId>
  157. <artifactId>spring-boot-maven-plugin</artifactId>
  158. </plugin>
  159. <plugin>
  160. <groupId>org.apache.maven.plugins</groupId>
  161. <artifactId>maven-compiler-plugin</artifactId>
  162. <configuration>
  163. <source>1.8</source>
  164. <target>1.8</target>
  165. </configuration>
  166. </plugin>
  167. <plugin>
  168. <groupId>org.apache.maven.plugins</groupId>
  169. <artifactId>maven-surefire-plugin</artifactId>
  170. </plugin>
  171. </plugins>
  172. </build>
  173. </project>