| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 | <?xml version="1.0"?><project 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"	xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">	<modelVersion>4.0.0</modelVersion>	<parent>		<groupId>org.springframework.boot</groupId>		<artifactId>spring-boot-starter-parent</artifactId>		<version>2.3.5.RELEASE</version>	</parent>	<groupId>com.genersoft</groupId>	<artifactId>wvp</artifactId>	<name>web video platform</name>	<repositories>		<repository>			<id>nexus-aliyun</id>			<name>Nexus aliyun</name>			<url>https://maven.aliyun.com/repository/public</url>			<layout>default</layout>			<snapshots>				<enabled>false</enabled>			</snapshots>			<releases>				<enabled>true</enabled>			</releases>		</repository>	</repositories>	<pluginRepositories>		<pluginRepository>			<id>nexus-aliyun</id>			<name>Nexus aliyun</name>			<url>https://maven.aliyun.com/repository/public</url>			<snapshots>				<enabled>false</enabled>			</snapshots>			<releases>				<enabled>true</enabled>			</releases>		</pluginRepository>	</pluginRepositories>	<properties>		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>		<!-- 依赖版本 -->		<pagehelper.version>5.2.0</pagehelper.version>		<snippetsDirectory>${project.build.directory}/generated-snippets</snippetsDirectory>		<asciidoctor.input.directory>${project.basedir}/docs/asciidoc</asciidoctor.input.directory>		<generated.asciidoc.directory>${project.build.directory}/asciidoc</generated.asciidoc.directory>		<asciidoctor.html.output.directory>${project.build.directory}/asciidoc/html</asciidoctor.html.output.directory>		<asciidoctor.pdf.output.directory>${project.build.directory}/asciidoc/pdf</asciidoctor.pdf.output.directory>	</properties>	<dependencies>		<dependency>			<groupId>org.springframework.boot</groupId>			<artifactId>spring-boot-starter-data-redis</artifactId>		</dependency>		<dependency>			<groupId>org.springframework.boot</groupId>			<artifactId>spring-boot-starter-web</artifactId>		</dependency>		<dependency>			<groupId>org.mybatis.spring.boot</groupId>			<artifactId>mybatis-spring-boot-starter</artifactId>			<version>2.1.4</version>		</dependency>		<!-- druid数据库连接池 -->		<dependency>			<groupId>com.alibaba</groupId>			<artifactId>druid</artifactId>			<version>1.2.3</version>		</dependency>		<!-- mysql数据库 -->		<dependency>			<groupId>mysql</groupId>			<artifactId>mysql-connector-java</artifactId>			<version>8.0.22</version>		</dependency>		<!-- 添加sqlite-jdbc数据库驱动 -->		<dependency>			<groupId>org.xerial</groupId>			<artifactId>sqlite-jdbc</artifactId>			<version>3.32.3.2</version>		</dependency>		<!--Mybatis分页插件 -->		<dependency>			<groupId>com.github.pagehelper</groupId>			<artifactId>pagehelper-spring-boot-starter</artifactId>			<version>1.2.10</version>		</dependency><!--		<dependency>--><!--			<groupId>org.apache.commons</groupId>--><!--			<artifactId>commons-lang3</artifactId>--><!--			<version>3.11</version>--><!--		</dependency>-->		<!--Swagger2 -->		<!--在线文档 -->		<dependency>			<groupId>io.springfox</groupId>			<artifactId>springfox-swagger2</artifactId>			<version>2.9.2</version>		</dependency>		<dependency>			<groupId>io.springfox</groupId>			<artifactId>springfox-swagger-ui</artifactId>			<version>2.6.1</version>		</dependency>		<dependency>			<groupId>javax.validation</groupId>			<artifactId>validation-api</artifactId>		</dependency>		<!-- 日志相关 -->		<dependency>			<groupId>org.springframework.boot</groupId>			<artifactId>spring-boot-starter-aop</artifactId>		</dependency>		<!-- sip协议栈 -->		<dependency>			<groupId>javax.sip</groupId>			<artifactId>jain-sip-ri</artifactId>			<version>1.3.0-91</version>		</dependency>		<dependency>			<groupId>log4j</groupId>			<artifactId>log4j</artifactId>			<version>1.2.17</version>		</dependency>		<!-- xml解析库 -->		<dependency>			<groupId>org.dom4j</groupId>			<artifactId>dom4j</artifactId>			<version>2.1.3</version>		</dependency>		<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->		<dependency>			<groupId>com.alibaba</groupId>			<artifactId>fastjson</artifactId>			<version>1.2.73</version>		</dependency>		<!--Guava是一种基于开源的Java库-->		<dependency>			<groupId>com.google.guava</groupId>			<artifactId>guava</artifactId>			<version>30.0-jre</version>		</dependency>		<!-- okhttp -->		<dependency>			<groupId>com.squareup.okhttp3</groupId>			<artifactId>okhttp</artifactId>			<version>4.9.0</version>		</dependency>    </dependencies>		<build>		<finalName>wvp-2.5.8</finalName>		<plugins>			<plugin>				<groupId>org.springframework.boot</groupId>				<artifactId>spring-boot-maven-plugin</artifactId>			</plugin>			<plugin>				<groupId>org.apache.maven.plugins</groupId>				<artifactId>maven-compiler-plugin</artifactId>				<configuration>					<source>1.8</source>					<target>1.8</target>				</configuration>			</plugin>			<plugin>				<groupId>org.apache.maven.plugins</groupId>				<artifactId>maven-surefire-plugin</artifactId>			</plugin>		</plugins>	</build></project>
 |