<?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>eyes</artifactId>
|
<groupId>com</groupId>
|
<version>0.0.1-SNAPSHOT</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>manage</artifactId>
|
|
<properties>
|
<maven.compiler.source>8</maven.compiler.source>
|
<maven.compiler.target>8</maven.compiler.target>
|
</properties>
|
|
<dependencies>
|
<dependency>
|
<groupId>com.aliyun</groupId>
|
<artifactId>alibabacloud-dysmsapi20170525</artifactId>
|
<version>3.0.1</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-test</artifactId>
|
<version>5.3.9</version>
|
</dependency>
|
<dependency>
|
<groupId>com.google.zxing</groupId>
|
<artifactId>core</artifactId>
|
<version>3.4.1</version>
|
</dependency>
|
<dependency>
|
<groupId>com.google.zxing</groupId>
|
<artifactId>javase</artifactId>
|
<version>3.4.1</version>
|
</dependency>
|
<dependency>
|
<groupId>com</groupId>
|
<artifactId>common</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
</dependency>
|
<!--security-->
|
<!--<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-security</artifactId>
|
</dependency>-->
|
<dependency>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-core</artifactId>
|
<version>5.5.3</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-config</artifactId>
|
<version>5.5.3</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-web</artifactId>
|
<version>5.5.3</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-crypto</artifactId>
|
<version>5.5.3</version>
|
</dependency>
|
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-all</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>commons-codec</groupId>
|
<artifactId>commons-codec</artifactId>
|
<version>1.1</version>
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
<finalName>manage</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<version>${spring.boot.version}</version>
|
<configuration>
|
<excludes>
|
<exclude>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
</exclude>
|
</excludes>
|
<mainClass>com.jilongda.manage.ManageApplication</mainClass>
|
</configuration>
|
</plugin>
|
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
<version>2.22.2</version>
|
<configuration>
|
<skipTests>true</skipTests>
|
</configuration>
|
</plugin>
|
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<version>3.8.0</version>
|
<configuration>
|
<source>1.8</source>
|
<target>1.8</target>
|
<encoding>UTF-8</encoding>
|
<optimize>true</optimize>
|
<useIncrementalCompilation>false</useIncrementalCompilation>
|
<!-- 去除泛型编译告警 -->
|
<compilerArgument>-Xlint:unchecked</compilerArgument>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|