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.
124 lines
4.1 KiB
124 lines
4.1 KiB
12 months ago
|
<?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>huoran</artifactId>
|
||
|
<groupId>com.huoran.parent</groupId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>competition</artifactId>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.source>8</maven.compiler.source>
|
||
|
<maven.compiler.target>8</maven.compiler.target>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>com.lxgnb</groupId>-->
|
||
|
<!-- <artifactId>xxl-job-boot-starter</artifactId>-->
|
||
|
<!-- <version>2.3.0-jobinfo-executor-2</version>-->
|
||
|
<!-- </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.alibaba</groupId>
|
||
|
<artifactId>easyexcel</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.apache.poi</groupId>
|
||
|
<artifactId>poi-ooxml</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.poi</groupId>
|
||
|
<artifactId>poi</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>cn.afterturn</groupId>
|
||
|
<artifactId>easypoi-base</artifactId>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<artifactId>guava</artifactId>
|
||
|
<groupId>com.google.guava</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>guava</artifactId>
|
||
|
<groupId>com.google.guava</groupId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<artifactId>poi-ooxml-schemas</artifactId>
|
||
|
<groupId>org.apache.poi</groupId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>cn.afterturn</groupId>
|
||
|
<artifactId>easypoi-web</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>cn.afterturn</groupId>
|
||
|
<artifactId>easypoi-annotation</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<finalName>competition-1.0.0</finalName>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<!-- 描述存放资源的目录,该路径相对POM路径-->
|
||
|
<directory>src/main/java</directory>
|
||
|
<includes>
|
||
|
<include>**/*.xml</include>
|
||
|
</includes>
|
||
|
</resource>
|
||
|
<resource>
|
||
|
<directory>src/main/resources</directory>
|
||
|
<includes>
|
||
|
<include>**/*.properties</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>
|
||
|
<!--<plugin>
|
||
|
<groupId>org.sonarsource.scanner.maven</groupId>
|
||
|
<artifactId>sonar-maven-plugin</artifactId>
|
||
|
<version>3.7.0.1746</version>
|
||
|
</plugin>-->
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|