许鹏程
2023-05-15 c8c29805d74ca4ea69f8912305e141b9cda89672
添加 tool-face 模块的 pom
已添加1个文件
已修改1个文件
27 ■■■■■ 文件已修改
.gitignore 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pom.xml 25 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
.gitignore
@@ -8,5 +8,3 @@
.settings/
logs/
resources/
pom.xml
pom.xml_no
pom.xml
对比新文件
@@ -0,0 +1,25 @@
<?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>product-server</artifactId>
        <groupId>com.lx</groupId>
        <version>2.0.0-release</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>product-server-tool-face</artifactId>
    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
    </properties>
    <dependencies>
        <dependency>
            <groupId>com.lx</groupId>
            <artifactId>product-server-admin</artifactId>
        </dependency>
    </dependencies>
</project>