Blame view

pom.xml 1.36 KB
肖超群 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
    xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <artifactId>jeecg-boot-parent</artifactId>
        <groupId>org.jeecgframework.boot</groupId>
        <version>3.1.0</version>
    </parent>

    <groupId>com.huaheng.wms</groupId>
    <artifactId>huaheng-wms4</artifactId>
14
    <version>4.0.1</version>
15
肖超群 authored
16
17
18
19
20
21
22
    <packaging>pom</packaging>

    <name>huaheng-wms4</name>
    <description>huaheng wms project for Spring Boot</description>

    <modules>
        <module>ant-design-vue-jeecg</module>
23
        <module>huaheng-wms-core</module>
肖超群 authored
24
25
26
    </modules>
    <repositories>
        <repository>
27
28
29
            <id>aliyun</id>
            <name>aliyun Repository</name>
            <url>https://maven.aliyun.com/repository/public</url>
肖超群 authored
30
31
32
33
34
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
        <repository>
35
36
37
            <id>jeecg</id>
            <name>jeecg Repository</name>
            <url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
肖超群 authored
38
39
40
41
42
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
    </repositories>
43
肖超群 authored
44
</project>