58 lines
1.7 KiB
XML
58 lines
1.7 KiB
XML
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<!-- 父工程 -->
|
|
<parent>
|
|
<artifactId>housekeeping-java</artifactId>
|
|
<groupId>org.hcy</groupId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
|
|
<!-- 模块信息 -->
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>front</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<!-- 项目管理 -->
|
|
<dependencies>
|
|
<!-- 公共依赖 -->
|
|
<dependency>
|
|
<groupId>org.hcy</groupId>
|
|
<artifactId>common</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
<!-- collections工具类 -->
|
|
<dependency>
|
|
<groupId>commons-collections</groupId>
|
|
<artifactId>commons-collections</artifactId>
|
|
<version>3.2.2</version>
|
|
</dependency>
|
|
|
|
<!--json处理器-->
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<!-- 插件管理 -->
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |