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>
|
2022-02-09 16:46:39 +08:00
|
|
|
|
<org.mapstruct.version>1.4.2.Final</org.mapstruct.version>
|
2022-08-19 18:07:25 +08:00
|
|
|
|
<JAVA_HOME>/Library/Java/JavaVirtualMachines/jdk1.8.0_321.jdk/Contents/Home</JAVA_HOME>
|
2021-12-16 15:15:34 +08:00
|
|
|
|
</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-02-09 16:46:39 +08:00
|
|
|
|
<!-- mapstruct -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
|
<artifactId>mapstruct-jdk8</artifactId>
|
|
|
|
|
<version>${org.mapstruct.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
|
<artifactId>mapstruct</artifactId>
|
|
|
|
|
<version>${org.mapstruct.version}</version>
|
|
|
|
|
</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-27 15:22:43 +08:00
|
|
|
|
|
2022-08-19 18:07:25 +08:00
|
|
|
|
<!-- 图片efi信息,识别ps,贵酒-->
|
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-08-19 18:07:25 +08:00
|
|
|
|
|
|
|
|
|
<!-- doc文档注释-->
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>com.sun</groupId>-->
|
|
|
|
|
<!-- <artifactId>tools</artifactId>-->
|
|
|
|
|
<!-- <scope>system</scope>-->
|
|
|
|
|
<!-- <version>1.8</version>-->
|
|
|
|
|
<!-- <systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>com.deepoove</groupId>-->
|
|
|
|
|
<!-- <artifactId>poi-tl</artifactId>-->
|
|
|
|
|
<!-- <version>1.12.0</version>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.google.auto.service/auto-service -->
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>com.google.auto.service</groupId>-->
|
|
|
|
|
<!-- <artifactId>auto-service</artifactId>-->
|
|
|
|
|
<!-- <version>1.0.1</version>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>e-iceblue</groupId>-->
|
|
|
|
|
<!-- <artifactId>spire.doc</artifactId>-->
|
|
|
|
|
<!-- <version>5.4.2</version>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
2021-12-16 15:15:34 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
2022-08-19 18:07:25 +08:00
|
|
|
|
<repositories>
|
|
|
|
|
<!-- mavne中央仓库-->
|
|
|
|
|
<repository>
|
|
|
|
|
<id>com.e-iceblue</id>
|
|
|
|
|
<name>e-iceblue</name>
|
|
|
|
|
<url>https://repo.e-iceblue.cn/repository/maven-public/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
<!-- 阿里云-->
|
|
|
|
|
<repository>
|
|
|
|
|
<id>aliyunmaven</id>
|
|
|
|
|
<name>aliyun macen</name>
|
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
|
2021-12-16 15:15:34 +08:00
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2022-02-09 16:46:39 +08:00
|
|
|
|
<version>3.8.1</version>
|
2021-12-16 15:15:34 +08:00
|
|
|
|
<configuration>
|
|
|
|
|
<source>8</source>
|
|
|
|
|
<target>8</target>
|
2022-02-09 16:46:39 +08:00
|
|
|
|
<annotationProcessorPaths>
|
|
|
|
|
<path>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
|
</path>
|
|
|
|
|
<path>
|
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
|
<artifactId>mapstruct-processor</artifactId>
|
|
|
|
|
<version>${org.mapstruct.version}</version>
|
|
|
|
|
</path>
|
|
|
|
|
|
|
|
|
|
</annotationProcessorPaths>
|
|
|
|
|
|
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-->
|