ecology_maven/pom.xml

190 lines
7.0 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<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>
<groupId>ecology-9-dev</groupId>
<artifactId>ecology-9-dev</artifactId>
<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>
<org.mapstruct.version>1.4.2.Final</org.mapstruct.version>
<JAVA_HOME>/Library/Java/JavaVirtualMachines/jdk1.8.0_321.jdk/Contents/Home</JAVA_HOME>
</properties>
<dependencies>
<!-- lombok-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<!-- 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>
<!-- 糊涂工具包,法大大验签指定版本-->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool.version}</version>
</dependency>
<!-- 图片efi信息识别ps贵酒-->
<dependency>
<groupId>com.drewnoakes</groupId>
<artifactId>metadata-extractor</artifactId>
<version>${metadata-extractor.version}</version>
</dependency>
<!-- 单元测试-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<!-- 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>-->
</dependencies>
<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>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>8</source>
<target>8</target>
<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>
</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>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
<include>**/*.properties</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</testResource>
</testResources>
</build>
</project>
<!--mvn dependency:copy-dependencies-->