99 lines
3.5 KiB
XML
99 lines
3.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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
|
<parent>
|
||
|
|
<artifactId>securitycontrol</artifactId>
|
||
|
|
<groupId>com.securitycontrol</groupId>
|
||
|
|
<version>3.6.1</version>
|
||
|
|
</parent>
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<artifactId>securitycontrol-screen</artifactId>
|
||
|
|
<dependencies>
|
||
|
|
<!-- SpringCloud Alibaba Nacos -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.securitycontrol</groupId>
|
||
|
|
<artifactId>securitycontrol-commons-security</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.securitycontrol</groupId>
|
||
|
|
<artifactId>securitycontrol-commons-swagger</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- SpringCloud Alibaba Nacos Config -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- SpringCloud Alibaba Sentinel -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- SpringBoot Actuator -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- Mysql Connector -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>mysql</groupId>
|
||
|
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- VideoSecurityControl Common DataSource -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.securitycontrol</groupId>
|
||
|
|
<artifactId>securitycontrol-commons-datasource</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- VideoSecurityControl Common DataScope -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.securitycontrol</groupId>
|
||
|
|
<artifactId>securitycontrol-commons-datascope</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- VideoSecurityControl Common Log -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.securitycontrol</groupId>
|
||
|
|
<artifactId>securitycontrol-commons-log</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-web</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- logstash -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>net.logstash.logback</groupId>
|
||
|
|
<artifactId>logstash-logback-encoder</artifactId>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
<build>
|
||
|
|
<finalName>${project.artifactId}</finalName>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
|
<version>2.7.4</version>
|
||
|
|
<configuration>
|
||
|
|
<includeSystemScope>true</includeSystemScope>
|
||
|
|
</configuration>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<goals>
|
||
|
|
<goal>repackage</goal>
|
||
|
|
</goals>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
|
||
|
|
</project>
|