2021-12-16 15:15:34 +08:00
|
|
|
|
<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/maven-v4_0_0.xsd">
|
|
|
|
|
<!--指定了当前pom的版本,4.0.0是固定的 -->
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
2021-12-19 13:38:27 +08:00
|
|
|
|
<groupId>ecology-9-dev</groupId>
|
|
|
|
|
<artifactId>ecology-9-dev</artifactId>
|
2021-12-16 15:15:34 +08:00
|
|
|
|
<version>E9</version>
|
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
<name>ecology本地开发环境</name>
|
|
|
|
|
<description>ecology 本地开发环境E9</description>
|
|
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
|
<developer>
|
|
|
|
|
<id>aiyh</id>
|
|
|
|
|
<name>aiYouHong</name>
|
|
|
|
|
<email>youhong.ai@weaver.com.cn</email>
|
|
|
|
|
<url>https://gitee.com/it-xiaoxiong</url>
|
|
|
|
|
<roles>
|
|
|
|
|
<role>二开</role>
|
|
|
|
|
</roles>
|
|
|
|
|
<organization>泛微-昂泰</organization>
|
|
|
|
|
<organizationUrl>https://www.e-cology.com.cn/</organizationUrl>
|
|
|
|
|
</developer>
|
|
|
|
|
</developers>
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
|
<lombok.version>1.18.22</lombok.version>
|
|
|
|
|
<hutool.version>5.7.12</hutool.version>
|
|
|
|
|
<metadata-extractor.version>2.16.0</metadata-extractor.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2022-01-26 16:14:41 +08:00
|
|
|
|
<!-- lombok-->
|
2021-12-16 15:15:34 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2022-01-26 16:14:41 +08:00
|
|
|
|
<!-- 糊涂工具包,法大大验签指定版本-->
|
2021-12-16 15:15:34 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
<version>${hutool.version}</version>
|
|
|
|
|
</dependency>
|
2022-01-26 16:14:41 +08:00
|
|
|
|
<!-- 图片efi信息,识别ps,贵酒-->
|
2022-01-27 15:22:43 +08:00
|
|
|
|
|
2021-12-16 15:15:34 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.drewnoakes</groupId>
|
|
|
|
|
<artifactId>metadata-extractor</artifactId>
|
|
|
|
|
<version>${metadata-extractor.version}</version>
|
|
|
|
|
</dependency>
|
2022-01-26 16:14:41 +08:00
|
|
|
|
<!-- 单元测试-->
|
2021-12-16 15:15:34 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<version>4.12</version>
|
|
|
|
|
</dependency>
|
2022-01-26 16:14:41 +08:00
|
|
|
|
<!-- 操作word相关-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-excelant</artifactId>
|
|
|
|
|
<version>3.12</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-scratchpad</artifactId>
|
|
|
|
|
<version>3.12</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
|
<version>3.8</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-ooxml-schemas</artifactId>
|
|
|
|
|
<version>3.8</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 操作word结束-->
|
2021-12-16 15:15:34 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>2.3.2</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>8</source>
|
|
|
|
|
<target>8</target>
|
2022-01-27 15:22:43 +08:00
|
|
|
|
<!-- <annotationProcessors>-->
|
|
|
|
|
<!-- <annotationProcessor>-->
|
|
|
|
|
<!-- <groupId>org.projectors</groupId>-->
|
|
|
|
|
<!-- <artifactId>lombok</artifactId>-->
|
|
|
|
|
<!-- <version>${lombok.version}</version>-->
|
|
|
|
|
<!-- </annotationProcessor>-->
|
|
|
|
|
<!-- </annotationProcessors>-->
|
2022-01-26 16:14:41 +08:00
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
|
<version>2.8</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<artifactItems>
|
|
|
|
|
<artifactItem>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<version>4.12</version>
|
|
|
|
|
</artifactItem>
|
|
|
|
|
</artifactItems>
|
2021-12-16 15:15:34 +08:00
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
<resources>
|
2021-12-19 13:38:27 +08:00
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**/*.xml</include>
|
|
|
|
|
<include>**/*.properties</include>
|
|
|
|
|
</includes>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
</resource>
|
2021-12-16 15:15:34 +08:00
|
|
|
|
</resources>
|
|
|
|
|
<testResources>
|
2021-12-19 13:38:27 +08:00
|
|
|
|
<testResource>
|
|
|
|
|
<directory>src/test/java</directory>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**/*.xml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
</testResource>
|
2021-12-16 15:15:34 +08:00
|
|
|
|
</testResources>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|
|
|
|
|
|
2022-01-26 16:14:41 +08:00
|
|
|
|
<!--mvn dependency:copy-dependencies-->
|