wvp-gb28181-project/pom.xml

194 lines
5.2 KiB
XML
Raw Normal View History

2020-05-07 21:55:45 +08:00
<?xml version="1.0"?>
2020-10-19 20:29:21 +08:00
<project
2020-05-07 21:55:45 +08:00
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>
2020-11-11 15:36:48 +08:00
<version>2.3.5.RELEASE</version>
2020-05-07 21:55:45 +08:00
</parent>
<groupId>com.genersoft</groupId>
<artifactId>wvp</artifactId>
<name>web video platform</name>
2020-10-19 20:29:21 +08:00
<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>
2020-05-07 21:55:45 +08:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- 依赖版本 -->
2020-11-11 15:36:48 +08:00
<pagehelper.version>5.2.0</pagehelper.version>
2020-05-07 21:55:45 +08:00
<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>
2021-01-04 18:30:44 +08:00
<artifactId>spring-boot-starter-data-redis</artifactId>
2020-05-07 21:55:45 +08:00
</dependency>
<dependency>
2020-10-19 20:29:21 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
2020-05-07 21:55:45 +08:00
<dependency>
2021-01-04 18:30:44 +08:00
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.1.4</version>
2020-11-11 15:36:48 +08:00
</dependency>
2020-10-19 20:29:21 +08:00
2020-11-11 15:36:48 +08:00
<!-- druid数据库连接池 -->
2020-05-07 21:55:45 +08:00
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
2020-11-11 15:36:48 +08:00
<version>1.2.3</version>
2020-05-07 21:55:45 +08:00
</dependency>
2020-11-11 15:36:48 +08:00
<!-- mysql数据库 -->
2020-05-07 21:55:45 +08:00
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
2020-11-11 15:36:48 +08:00
<version>8.0.22</version>
2020-05-07 21:55:45 +08:00
</dependency>
2020-10-19 20:29:21 +08:00
2020-12-31 13:15:50 +08:00
<!-- 添加sqlite-jdbc数据库驱动 -->
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.32.3.2</version>
</dependency>
2021-01-04 18:30:44 +08:00
<!--Mybatis分页插件 -->
2020-05-07 21:55:45 +08:00
<dependency>
<groupId>com.github.pagehelper</groupId>
2021-01-04 18:30:44 +08:00
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.2.10</version>
2020-05-07 21:55:45 +08:00
</dependency>
2021-01-04 18:30:44 +08:00
<!-- <dependency>-->
<!-- <groupId>org.apache.commons</groupId>-->
<!-- <artifactId>commons-lang3</artifactId>-->
<!-- <version>3.11</version>-->
<!-- </dependency>-->
2020-10-19 20:29:21 +08:00
2020-05-07 21:55:45 +08:00
<!--Swagger2 -->
<!--在线文档 -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
2020-11-11 15:36:48 +08:00
<version>2.9.2</version>
2020-05-07 21:55:45 +08:00
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.6.1</version>
</dependency>
2020-11-11 15:36:48 +08:00
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
2020-10-19 20:29:21 +08:00
2020-05-07 21:55:45 +08:00
<!-- 日志相关 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
2020-10-19 20:29:21 +08:00
2020-11-11 15:36:48 +08:00
<!-- sip协议栈 -->
2020-05-07 21:55:45 +08:00
<dependency>
<groupId>javax.sip</groupId>
<artifactId>jain-sip-ri</artifactId>
<version>1.3.0-91</version>
2020-05-07 21:55:45 +08:00
</dependency>
2020-05-07 21:55:45 +08:00
<dependency>
2020-11-11 15:36:48 +08:00
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
2020-05-07 21:55:45 +08:00
</dependency>
2020-11-11 15:36:48 +08:00
<!-- xml解析库 -->
2020-05-07 21:55:45 +08:00
<dependency>
<groupId>org.dom4j</groupId>
2020-11-11 15:36:48 +08:00
<artifactId>dom4j</artifactId>
<version>2.1.3</version>
2020-05-07 21:55:45 +08:00
</dependency>
2020-11-11 15:36:48 +08:00
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
2020-05-07 21:55:45 +08:00
<dependency>
2020-11-11 15:36:48 +08:00
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.73</version>
2020-05-07 21:55:45 +08:00
</dependency>
2020-11-11 15:36:48 +08:00
<!--Guava是一种基于开源的Java库-->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
2020-11-11 15:36:48 +08:00
<version>30.0-jre</version>
</dependency>
<!-- okhttp -->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.9.0</version>
</dependency>
</dependencies>
2020-05-07 21:55:45 +08:00
<build>
2020-11-17 15:27:13 +08:00
<finalName>wvp-2.5.8</finalName>
2020-05-07 21:55:45 +08:00
<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>
2020-11-07 17:41:17 +08:00
2020-05-07 21:55:45 +08:00
</plugins>
</build>
</project>