pom.xml 5.4 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. <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. <pagehelper.version>5.2.0</pagehelper.version>
  45. <snippetsDirectory>${project.build.directory}/generated-snippets</snippetsDirectory>
  46. <asciidoctor.input.directory>${project.basedir}/docs/asciidoc</asciidoctor.input.directory>
  47. <generated.asciidoc.directory>${project.build.directory}/asciidoc</generated.asciidoc.directory>
  48. <asciidoctor.html.output.directory>${project.build.directory}/asciidoc/html</asciidoctor.html.output.directory>
  49. <asciidoctor.pdf.output.directory>${project.build.directory}/asciidoc/pdf</asciidoctor.pdf.output.directory>
  50. </properties>
  51. <dependencies>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-data-redis</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-web</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.mybatis.spring.boot</groupId>
  62. <artifactId>mybatis-spring-boot-starter</artifactId>
  63. <version>2.1.4</version>
  64. </dependency>
  65. <!-- druid数据库连接池 -->
  66. <dependency>
  67. <groupId>com.alibaba</groupId>
  68. <artifactId>druid</artifactId>
  69. <version>1.2.3</version>
  70. </dependency>
  71. <!-- mysql数据库 -->
  72. <dependency>
  73. <groupId>mysql</groupId>
  74. <artifactId>mysql-connector-java</artifactId>
  75. <version>8.0.22</version>
  76. </dependency>
  77. <!-- 添加sqlite-jdbc数据库驱动 -->
  78. <dependency>
  79. <groupId>org.xerial</groupId>
  80. <artifactId>sqlite-jdbc</artifactId>
  81. <version>3.32.3.2</version>
  82. </dependency>
  83. <!--Mybatis分页插件 -->
  84. <dependency>
  85. <groupId>com.github.pagehelper</groupId>
  86. <artifactId>pagehelper-spring-boot-starter</artifactId>
  87. <version>1.2.10</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>${pom.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>