wvp-gb28181-project/pom.xml

198 lines
5.5 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
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
<mapper.version>4.1.5</mapper.version>
<mybatis.version>3.5.5</mybatis.version>
<mybatis.spring.version>2.0.5</mybatis.spring.version>
<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>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
2020-06-02 19:53:20 +08:00
<artifactId>spring-boot-starter-tomcat</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>
2020-10-19 20:29:21 +08:00
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
2020-11-11 15:36:48 +08:00
<!-- redis -->
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>3.3.0</version>
</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-05-07 21:55:45 +08:00
<!--Mybatis -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>${mybatis.version}</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>${mybatis.spring.version}</version>
</dependency>
2020-10-19 20:29:21 +08:00
2020-05-07 21:55:45 +08:00
<!--分页插件 -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>${pagehelper.version}</version>
</dependency>
<!--通用Mapper -->
<dependency>
<groupId>tk.mybatis</groupId>
<artifactId>mapper</artifactId>
<version>${mapper.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
2020-11-11 15:36:48 +08:00
<version>3.11</version>
2020-05-07 21:55:45 +08:00
</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-92</version>
2020-11-07 16:53:49 +08:00
<scope>system</scope>
<systemPath>${project.basedir}/libs/jain-sip-ri-1.3.0-92.jar</systemPath>
2020-05-07 21:55:45 +08:00
</dependency>
<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>
2020-11-11 15:36:48 +08:00
<groupId>org.dom4j</groupId>
<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>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
2020-05-07 21:55:45 +08:00
</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>