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.
165 lines
5.2 KiB
165 lines
5.2 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>occupationlab</artifactId> |
|
<version>1.0.0</version> |
|
<name>occupationlab</name> |
|
|
|
<description>职站微服务</description> |
|
<properties> |
|
<java.version>1.8</java.version> |
|
</properties> |
|
|
|
<dependencies> |
|
|
|
<!-- <dependency>--> |
|
<!-- <groupId>com.lxgnb</groupId>--> |
|
<!-- <artifactId>xxl-job-boot-starter</artifactId>--> |
|
<!-- <version>2.3.0-jobinfo-executor-2</version>--> |
|
<!-- </dependency>--> |
|
|
|
<dependency> |
|
<groupId>commons-codec</groupId> |
|
<artifactId>commons-codec</artifactId> |
|
<version>1.15</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> |
|
<!--<exclusions> |
|
<exclusion> |
|
<artifactId>guava</artifactId> |
|
<groupId>com.google.guava</groupId> |
|
</exclusion> |
|
</exclusions>--> |
|
</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> |
|
<dependency> |
|
<groupId>org.freemarker</groupId> |
|
<artifactId>freemarker</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.shiro</groupId> |
|
<artifactId>shiro-spring</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.quartz-scheduler</groupId> |
|
<artifactId>quartz</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>com.mchange</groupId> |
|
<artifactId>c3p0</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>com.zaxxer</groupId> |
|
<artifactId>HikariCP-java6</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</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> |
|
<include>**/*.ftl</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>
|
|
|