122 lines
4.0 KiB
XML
122 lines
4.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.7.2</version>
|
|
</parent>
|
|
<groupId>top.panll.assist</groupId>
|
|
<artifactId>wvp-pro-assist</artifactId>
|
|
<version>2.6.9</version>
|
|
<name>wvp-pro-assist</name>
|
|
<description></description>
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<maven.build.timestamp.format>MMddHHmm</maven.build.timestamp.format>
|
|
<!-- <pagehelper.version>5.2.0</pagehelper.version>-->
|
|
</properties>
|
|
|
|
<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>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.bramp.ffmpeg</groupId>
|
|
<artifactId>ffmpeg</artifactId>
|
|
<version>0.6.2</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>1.2.73</version>
|
|
</dependency>
|
|
|
|
<!--在线文档 -->
|
|
<dependency>
|
|
<groupId>org.springdoc</groupId>
|
|
<artifactId>springdoc-openapi-ui</artifactId>
|
|
<version>1.6.10</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
<artifactId>knife4j-springdoc-ui</artifactId>
|
|
<version>3.0.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.mp4parser</groupId>
|
|
<artifactId>muxer</artifactId>
|
|
<version>1.9.56</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mp4parser</groupId>
|
|
<artifactId>streaming</artifactId>
|
|
<version>1.9.56</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.mp4parser</groupId>
|
|
<artifactId>isoparser</artifactId>
|
|
<version>1.9.27</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}-${project.version}-${maven.build.timestamp}</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>
|
|
<configuration>
|
|
<skipTests>true</skipTests>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|