198 lines
7.5 KiB
XML
198 lines
7.5 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>
|
||
<groupId>com.hisense</groupId>
|
||
<artifactId>monitor-manage</artifactId>
|
||
<version>0.0.1-SNAPSHOT</version>
|
||
<name>monitor-manage</name>
|
||
<description>Demo project for Spring Boot</description>
|
||
|
||
<properties>
|
||
<javacv.version>1.5.7</javacv.version>
|
||
<system.linux-x86_64>linux-x86_64</system.linux-x86_64>
|
||
<ffmpeg.version>5.0</ffmpeg.version>
|
||
<fastjson.version>1.2.72</fastjson.version>
|
||
<mybatis-plus-boot-starter.version>3.4.2</mybatis-plus-boot-starter.version>
|
||
<mysql-connector-java.version>8.0.20</mysql-connector-java.version>
|
||
<guava.version>21.0</guava.version>
|
||
<mybatis-plus-generate.version>2.3</mybatis-plus-generate.version>
|
||
<spring-boot-starter-cache.version>2.4.4</spring-boot-starter-cache.version>
|
||
<ehcache.version>2.10.6</ehcache.version>
|
||
<hutool-all.version>5.7.18</hutool-all.version>
|
||
<springfox-swagger2.version>2.9.2</springfox-swagger2.version>
|
||
<springfox-swagger-ui.version>2.9.2</springfox-swagger-ui.version>
|
||
<swagger-bootstrap-ui.version>1.9.2</swagger-bootstrap-ui.version>
|
||
<poi-ooxml.version>3.11</poi-ooxml.version>
|
||
<easyexcel.version>2.2.6</easyexcel.version>
|
||
|
||
<java.version>1.8</java.version>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
<spring-boot.version>2.3.7.RELEASE</spring-boot.version>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>fastjson</artifactId>
|
||
<version>${fastjson.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
<version>${mybatis-plus-boot-starter.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>mysql</groupId>
|
||
<artifactId>mysql-connector-java</artifactId>
|
||
<version>${mysql-connector-java.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<optional>true</optional>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.google.guava</groupId>
|
||
<artifactId>guava</artifactId>
|
||
<version>${guava.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-test</artifactId>
|
||
<scope>test</scope>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.junit.vintage</groupId>
|
||
<artifactId>junit-vintage-engine</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>mybatis-plus-generate</artifactId>
|
||
<version>${mybatis-plus-generate.version}</version>
|
||
</dependency>
|
||
|
||
<!-- javacv+javacpp核心库-->
|
||
<dependency>
|
||
<groupId>org.bytedeco</groupId>
|
||
<artifactId>javacv</artifactId>
|
||
<version>${javacv.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.bytedeco</groupId>
|
||
<artifactId>javacpp-platform</artifactId>
|
||
<version>${javacv.version}</version>
|
||
</dependency>
|
||
<!-- ffmpeg最小依赖包,必须包含上面的javacv+javacpp核心库 -->
|
||
<dependency>
|
||
<groupId>org.bytedeco</groupId>
|
||
<artifactId>ffmpeg</artifactId>
|
||
<version>${ffmpeg.version}-${javacv.version}</version>
|
||
<classifier>${system.linux-x86_64}</classifier>
|
||
</dependency>
|
||
|
||
<!--缓存-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-cache</artifactId>
|
||
<version>${spring-boot-starter-cache.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>net.sf.ehcache</groupId>
|
||
<artifactId>ehcache</artifactId>
|
||
<version>${ehcache.version}</version>
|
||
</dependency>
|
||
|
||
|
||
<dependency>
|
||
<groupId>cn.hutool</groupId>
|
||
<artifactId>hutool-all</artifactId>
|
||
<version>${hutool-all.version}</version>
|
||
</dependency>
|
||
<!--swagger -->
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger2</artifactId>
|
||
<version>${springfox-swagger2.version}</version>
|
||
</dependency>
|
||
<!--swagger-ui.html模式 -->
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger-ui</artifactId>
|
||
<version>${springfox-swagger-ui.version}</version>
|
||
</dependency>
|
||
<!--doc.html模式 -->
|
||
<dependency>
|
||
<groupId>com.github.xiaoymin</groupId>
|
||
<artifactId>swagger-bootstrap-ui</artifactId>
|
||
<version>${swagger-bootstrap-ui.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi-ooxml</artifactId>
|
||
<version>${poi-ooxml.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>easyexcel</artifactId>
|
||
<version>${easyexcel.version}</version>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<dependencyManagement>
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-dependencies</artifactId>
|
||
<version>${spring-boot.version}</version>
|
||
<type>pom</type>
|
||
<scope>import</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
</dependencyManagement>
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<version>3.8.1</version>
|
||
<configuration>
|
||
<source>1.8</source>
|
||
<target>1.8</target>
|
||
<encoding>UTF-8</encoding>
|
||
</configuration>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
<version>2.3.7.RELEASE</version>
|
||
<configuration>
|
||
<mainClass>com.hisense.monitormanage.MonitorManageApplication</mainClass>
|
||
</configuration>
|
||
<executions>
|
||
<execution>
|
||
<id>repackage</id>
|
||
<goals>
|
||
<goal>repackage</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
|
||
</project>
|