修改项目为maven项目

dev
IT-xiaoXiong 2021-12-14 11:39:09 +08:00
parent c8b9453e9d
commit 222fb66a41
7 changed files with 107 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

107
pom.xml Normal file
View File

@ -0,0 +1,107 @@
<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>
<!-- 主项目标识用来定义当前maven属于哪个实际的项目 -->
<groupId>ecology-weaver</groupId>
<!-- 模块名maven项目和实际的项目不是一一对应的关系maven项目提现的是模块化的概念一个实际项目往往会被划分为很多个模块 -->
<artifactId>ecology-weaver</artifactId>
<!-- 当前项目版本号,一般有三个数字组成 第一个数字:大版本号 第二个数字:分支版本号 第三个数字:先版本号 snapshot: 快照 alpha
内测版本 beta 公测版本 Release 稳定版本 GA 正式发布版本 -->
<version>E9</version>
<!-- maven项目打包方式默认情况为jar还可打包为warzippom等 -->
<packaging>war</packaging>
<!-- 项目描述名 -->
<name>ecology本地开发环境</name>
<!-- 项目地址 -->
<!-- <url></url>-->
<!-- 项目描述 -->
<description>ecology 本地开发环境E9</description>
<!-- 开发人员列表 -->
<developers>
<developer>
<!-- 项目开发者的唯一标识符 -->
<id>aiyh</id>
<!-- 项目开发者的全名 -->
<name>aiYouHong</name>
<!-- 项目开发者的email -->
<email>youhong.ai@weaver.com.cn</email>
<!-- 项目开发者的主页的URL -->
<url>https://gitee.com/it-xiaoxiong</url>
<!-- 项目开发者在项目中扮演的角色,角色元素描述了各种角色 -->
<roles>
<role>二开</role>
</roles>
<!-- 项目开发者所属组织 -->
<organization>泛微-昂泰</organization>
<!-- 项目开发者所属组织的URL -->
<organizationUrl>https://www.e-cology.com.cn/</organizationUrl>
</developer>
</developers>
<!-- 许可证信息 -->
<!-- <licenses></licenses>-->
<!-- 组织信息 -->
<!-- <organization></organization>-->
<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>
<!-- lombok-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</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>
</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>
</configuration>
</plugin>
</plugins>
</build>
</project>
<!--mvn dependency:copy-dependencies-->