You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
3.5 KiB
113 lines
3.5 KiB
<?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> |
|
<artifactId>huoran</artifactId> |
|
<groupId>com.huoran.parent</groupId> |
|
<version>1.0-SNAPSHOT</version> |
|
</parent> |
|
|
|
<groupId>com.huoran</groupId> |
|
<artifactId>users</artifactId> |
|
<version>1.0.0</version> |
|
<name>users</name> |
|
<packaging>jar</packaging> |
|
<description>多平台用户统一管理</description> |
|
|
|
<properties> |
|
<java.version>1.8</java.version> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
</properties> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>com.github.binarywang</groupId> |
|
<artifactId>weixin-java-miniapp</artifactId> |
|
<version>3.6.0</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-actuator</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.huoran.common</groupId> |
|
<artifactId>common</artifactId> |
|
<version>0.0.1-SNAPSHOT</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.huoran.api</groupId> |
|
<artifactId>api</artifactId> |
|
<version>1.0-SNAPSHOT</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.github.whvcse</groupId> |
|
<artifactId>easy-captcha</artifactId> |
|
<version>1.6.2</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-ooxml</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi</artifactId> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
<build> |
|
<resources> |
|
<resource> |
|
<!-- 描述存放资源的目录,该路径相对POM路径--> |
|
<directory>src/main/java</directory> |
|
<includes> |
|
<include>**/*.xml</include> |
|
</includes> |
|
</resource> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<includes> |
|
<include>**/*.properties</include> |
|
<include>**/*.xlsx</include> |
|
</includes> |
|
|
|
</resource> |
|
</resources> |
|
|
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
</plugin> |
|
<!--添加配置跳过测试--> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<version>2.22.2</version> |
|
<configuration> |
|
<skipTests>true</skipTests> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|