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.
171 lines
5.2 KiB
171 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>nakadai</artifactId> |
|
<version>1.0</version> |
|
<name>nakadai</name> |
|
<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.huoran.parent</groupId> |
|
<artifactId>websocket</artifactId> |
|
<version>1.0-SNAPSHOT</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-actuator</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-amqp</artifactId> |
|
</dependency> |
|
|
|
<!-- 二维码生成包 --> |
|
<dependency> |
|
<groupId>com.google.zxing</groupId> |
|
<artifactId>javase</artifactId> |
|
<version>3.2.0</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> |
|
|
|
<!-- velocity 模板引擎, Mybatis Plus 代码生成器需要 --> |
|
<!-- <dependency>--> |
|
<!-- <groupId>org.apache.velocity</groupId>--> |
|
<!-- <artifactId>velocity-engine-core</artifactId>--> |
|
<!-- <version>2.0</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>com.baomidou</groupId> |
|
<artifactId>mybatis-plus-generator</artifactId> |
|
<version>3.0.5</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.freemarker</groupId> |
|
<artifactId>freemarker</artifactId> |
|
<version>2.3.28</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>nakadai-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>--> |
|
<include>**/*.*</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>
|
|
|