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>
谭毅彬
authored
about a year ago
15
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>
谭毅彬
authored
about a year ago
23
<module> huaheng-wms-core</module>
24
25
26
</modules>
<repositories>
<repository>
谭毅彬
authored
about a year ago
27
28
29
<id> aliyun</id>
<name> aliyun Repository</name>
<url> https://maven.aliyun.com/repository/public</url>
30
31
32
33
34
<snapshots>
<enabled> false</enabled>
</snapshots>
</repository>
<repository>
谭毅彬
authored
about a year ago
35
36
37
<id> jeecg</id>
<name> jeecg Repository</name>
<url> https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
38
39
40
41
42
<snapshots>
<enabled> false</enabled>
</snapshots>
</repository>
</repositories>
43
44
</project>