wvp-gb28181-project/pom.xml

412 lines
11 KiB
XML
Raw Normal View History

2020-05-07 21:55:45 +08:00
<?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">
2020-05-07 21:55:45 +08:00
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
2022-08-19 17:11:51 +08:00
<version>2.7.2</version>
2020-05-07 21:55:45 +08:00
</parent>
<groupId>com.genersoft</groupId>
2021-07-19 17:22:54 +08:00
<artifactId>wvp-pro</artifactId>
2023-06-02 16:40:19 +08:00
<version>2.6.9</version>
2020-05-07 21:55:45 +08:00
<name>web video platform</name>
2021-08-09 16:54:36 +08:00
<description>国标28181视频平台</description>
2023-02-06 17:34:47 +08:00
<packaging>${project.packaging}</packaging>
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>
2021-07-19 17:22:54 +08:00
<maven.build.timestamp.format>MMddHHmm</maven.build.timestamp.format>
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.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>
<org.mapstruct.version>1.5.3.Final</org.mapstruct.version>
<springboot.version>2.7.2</springboot.version>
2020-05-07 21:55:45 +08:00
</properties>
2023-02-06 17:34:47 +08:00
<profiles>
<profile>
<id>jar</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<project.packaging>jar</project.packaging>
</properties>
</profile>
<profile>
<id>war</id>
<properties>
<project.packaging>war</project.packaging>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
2023-02-07 20:59:33 +08:00
<artifactId>spring-boot-starter-jetty</artifactId>
2023-02-06 17:34:47 +08:00
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</profile>
</profiles>
2020-05-07 21:55:45 +08:00
<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>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</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>
2022-08-19 17:11:51 +08:00
<version>2.2.2</version>
<exclusions>
<exclusion>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
</exclusion>
</exclusions>
2020-11-11 15:36:48 +08:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</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-jdbc</artifactId>
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>
2022-08-19 17:11:51 +08:00
<version>8.0.30</version>
2020-05-07 21:55:45 +08:00
</dependency>
2020-10-19 20:29:21 +08:00
2023-05-12 10:37:03 +08:00
<!--postgresql-->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.5.1</version>
</dependency>
2023-05-16 17:17:24 +08:00
<!-- kingbase人大金仓 -->
2023-08-07 15:44:32 +08:00
<!-- https://mvnrepository.com/artifact/cn.com.kingbase/kingbase8 -->
2023-05-16 17:17:24 +08:00
<dependency>
2023-08-07 15:44:32 +08:00
<groupId>cn.com.kingbase</groupId>
2023-05-16 17:17:24 +08:00
<artifactId>kingbase8</artifactId>
<version>8.6.0</version>
</dependency>
2023-05-12 10:37:03 +08:00
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>
2023-05-16 17:17:24 +08:00
<version>1.4.6</version>
2020-05-07 21:55:45 +08:00
</dependency>
<!--在线文档 -->
<dependency>
2022-08-19 17:11:51 +08:00
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
<version>1.6.10</version>
2020-05-07 21:55:45 +08:00
</dependency>
2022-08-19 17:11:51 +08:00
2021-04-12 16:04:04 +08:00
<dependency>
<groupId>com.github.xiaoymin</groupId>
2022-08-19 17:11:51 +08:00
<artifactId>knife4j-springdoc-ui</artifactId>
<version>3.0.3</version>
2021-04-12 16:04:04 +08:00
</dependency>
2021-04-07 18:35:13 +08:00
<!--参数校验 -->
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>
<!-- 取代log4j -->
2020-05-07 21:55:45 +08:00
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
2022-08-19 17:11:51 +08:00
<version>1.7.36</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
2022-11-05 20:49:56 +08:00
<!-- json解析库fastjson2 -->
2020-05-07 21:55:45 +08:00
<dependency>
2022-11-05 20:49:56 +08:00
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>2.0.17</version>
</dependency>
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2-extension</artifactId>
<version>2.0.17</version>
2020-05-07 21:55:45 +08:00
</dependency>
<!-- okhttp -->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
2022-08-19 17:11:51 +08:00
<version>4.10.0</version>
</dependency>
2021-04-26 09:13:17 +08:00
2022-02-25 20:33:02 +08:00
<!-- okhttp 调试日志 -->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>logging-interceptor</artifactId>
2022-08-19 17:11:51 +08:00
<version>4.10.0</version>
2022-02-25 20:33:02 +08:00
</dependency>
2021-04-26 09:13:17 +08:00
<!-- okhttp-digest -->
<dependency>
2022-06-03 17:07:19 +08:00
<groupId>io.github.rburgst</groupId>
2021-04-26 09:13:17 +08:00
<artifactId>okhttp-digest</artifactId>
2022-08-19 17:11:51 +08:00
<version>2.7</version>
2021-04-26 09:13:17 +08:00
</dependency>
<!-- https://mvnrepository.com/artifact/net.sf.kxml/kxml2 -->
<!-- <dependency>-->
<!-- <groupId>net.sf.kxml</groupId>-->
<!-- <artifactId>kxml2</artifactId>-->
<!-- <version>2.3.0</version>-->
<!-- </dependency>-->
2023-03-13 09:45:00 +08:00
<!-- jwt实现 -->
2021-04-26 09:13:17 +08:00
<dependency>
2023-03-13 09:45:00 +08:00
<groupId>org.bitbucket.b_c</groupId>
<artifactId>jose4j</artifactId>
<version>0.9.3</version>
2021-04-26 09:13:17 +08:00
</dependency>
2021-06-01 17:05:07 +08:00
<!--反向代理-->
<dependency>
<groupId>org.mitre.dsmiley.httpproxy</groupId>
<artifactId>smiley-http-proxy-servlet</artifactId>
2022-08-19 17:11:51 +08:00
<version>1.12.1</version>
2021-06-01 17:05:07 +08:00
</dependency>
2021-04-26 09:13:17 +08:00
2022-01-16 10:40:57 +08:00
<!--excel解析库-->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
2022-08-19 17:11:51 +08:00
<version>3.1.1</version>
2022-01-16 10:40:57 +08:00
</dependency>
2022-02-04 21:46:48 +08:00
<!-- 获取系统信息 -->
<dependency>
<groupId>com.github.oshi</groupId>
<artifactId>oshi-core</artifactId>
2022-08-19 17:11:51 +08:00
<version>6.2.2</version>
2022-02-04 21:46:48 +08:00
</dependency>
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session-core</artifactId>
</dependency>
<!-- &lt;!&ndash; 检测文件编码 &ndash;&gt;-->
<!-- &lt;!&ndash; https://mvnrepository.com/artifact/cpdetector/cpdetector &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>cpdetector</groupId>-->
<!-- <artifactId>cpdetector</artifactId>-->
<!-- <version>1.0.8</version>-->
<!-- </dependency>-->
2021-07-16 16:34:51 +08:00
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
2022-08-19 17:11:51 +08:00
<version>31.1-jre</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
2023-08-04 16:40:37 +08:00
<scope>test</scope>
</dependency>
2021-04-26 09:13:17 +08:00
<!--&lt;!&ndash; 开发工具 &ndash;&gt;-->
<!--<dependency>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-devtools</artifactId>-->
<!--</dependency>-->
<!-- lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<!--MapStruct-->
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>${org.mapstruct.version}</version>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${org.mapstruct.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
2021-04-26 09:13:17 +08:00
2020-05-07 21:55:45 +08:00
<build>
<!--<finalName>${project.artifactId}-${project.version}-${maven.build.timestamp}</finalName>-->
<finalName>${project.artifactId}-${project.version}</finalName>
2020-05-07 21:55:45 +08:00
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.7.2</version>
2021-04-26 13:11:09 +08:00
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
2020-05-07 21:55:45 +08:00
</plugin>
<plugin>
2021-08-09 16:54:36 +08:00
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
2022-05-07 15:13:56 +08:00
<version>3.0.1</version>
<configuration>
<offline>true</offline>
<failOnNoGitDirectory>false</failOnNoGitDirectory>
<dateFormat>yyyyMMdd</dateFormat>
</configuration>
</plugin>
2021-08-09 16:54:36 +08:00
2020-05-07 21:55:45 +08:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
2022-05-07 15:13:56 +08:00
<version>2.22.2</version>
2021-08-05 16:14:06 +08:00
<configuration>
<skipTests>true</skipTests>
</configuration>
2020-05-07 21:55:45 +08:00
</plugin>
2020-11-07 17:41:17 +08:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${org.mapstruct.version}</version>
</path>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-mapstruct-binding</artifactId>
<version>0.2.0</version>
</path>
<path>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<version>${springboot.version}</version>
</path>
<!-- other annotation processors -->
</annotationProcessorPaths>
</configuration>
</plugin>
2020-05-07 21:55:45 +08:00
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
2020-05-07 21:55:45 +08:00
</build>
</project>