add
yj
2024-12-05 b9900893177c78fc559223521fe839aa21000017
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.4.3</version> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.iotechn</groupId>
    <artifactId>unimall</artifactId>
    <version>v3</version>
    <name>unimall</name>
    <packaging>pom</packaging>
    <description>骨架DEMO 父工程</description>
 
    <repositories>
        <repository>
            <id>maven-ali</id>
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
            <releases>
            </releases>
            <snapshots>
                <updatePolicy>always</updatePolicy>
                <checksumPolicy>fail</checksumPolicy>
            </snapshots>
        </repository>
    </repositories>
 
    <properties>
        <java.version>1.8</java.version>
        <maven.archetype.version>3.0.1</maven.archetype.version>
        <dobbinfw-support.version>0.0.1-SNAPSHOT</dobbinfw-support.version>
        <dobbinfw-launcher.version>0.0.1-SNAPSHOT</dobbinfw-launcher.version>
    </properties>
 
    <dependencies>
        <dependency>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-archetype-plugin</artifactId>
            <version>${maven.archetype.version}</version>
        </dependency>
    </dependencies>
 
    <dependencyManagement>
        <dependencies>
 
            <dependency>
                <groupId>com.dobbinsoft</groupId>
                <artifactId>fw-launcher</artifactId>
                <version>${dobbinfw-launcher.version}</version>
            </dependency>
 
            <dependency>
                <groupId>com.dobbinsoft</groupId>
                <artifactId>fw-support</artifactId>
                <version>${dobbinfw-support.version}</version>
            </dependency>
 
            <!-- 统一支付包 -->
            <dependency>
                <groupId>com.dobbinsoft</groupId>
                <artifactId>fw-pay</artifactId>
                <version>1.0-SNAPSHOT</version>
            </dependency>
 
            <!-- lombok 工具 -->
            <dependency>
                <groupId>org.projectlombok</groupId>
                <artifactId>lombok</artifactId>
                <version>1.18.4</version>
                <scope>provided</scope>
            </dependency>
 
        </dependencies>
    </dependencyManagement>
 
    <distributionManagement>
        <repository>
            <id>rdc-snapshot</id>
            <name>Aliyun Xiao</name>
            <url>https://packages.aliyun.com/maven/repository/2084582-snapshot-Vrq4iK/</url>
        </repository>
    </distributionManagement>
 
    <modules>
        <module>unimall-app-api</module>
        <module>unimall-admin-api</module>
        <module>unimall-biz</module>
        <module>unimall-data</module>
        <module>unimall-runner</module>
    </modules>
</project>