Fixiaobai
2023-11-16 d8d129a2e41f7099968cb4f4dc1b028ab985135f
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?xml version="1.0"?>
<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">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.chinaztt.mes</groupId>
        <artifactId>ztt-mes</artifactId>
        <version>1.0-SNAPSHOT</version>
    </parent>
 
    <artifactId>mes-web</artifactId>
 
    <dependencies>
        <!--必备: undertow容器-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-undertow</artifactId>
        </dependency>
        <!--必备: spring boot web-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <!--必备: 注册中心客户端-->
        <dependency>
            <groupId>com.alibaba.cloud</groupId>
            <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
        </dependency>
        <!--必备: 配置中心客户端-->
        <dependency>
            <groupId>com.alibaba.cloud</groupId>
            <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
        </dependency>
        <!--测试: spring boot test-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
        </dependency>
 
 
        <dependency>
            <groupId>com.chinaztt.mes</groupId>
            <artifactId>mes-basic</artifactId>
            <version>${mes.version}</version>
        </dependency>
        <dependency>
            <groupId>com.chinaztt.mes</groupId>
            <artifactId>mes-common</artifactId>
            <version>${mes.version}</version>
        </dependency>
        <dependency>
            <groupId>com.chinaztt.mes</groupId>
            <artifactId>mes-equipment</artifactId>
            <version>${mes.version}</version>
        </dependency>
        <dependency>
            <groupId>com.chinaztt.mes</groupId>
            <artifactId>mes-technology</artifactId>
            <version>${mes.version}</version>
        </dependency>
        <dependency>
            <groupId>com.chinaztt.mes</groupId>
            <artifactId>mes-plan</artifactId>
            <version>${mes.version}</version>
        </dependency>
        <dependency>
            <groupId>com.chinaztt.mes</groupId>
            <artifactId>mes-aps</artifactId>
            <version>${mes.version}</version>
        </dependency>
        <dependency>
            <groupId>com.chinaztt.mes</groupId>
            <artifactId>mes-warehouse</artifactId>
            <version>${mes.version}</version>
        </dependency>
        <dependency>
            <groupId>com.chinaztt.mes</groupId>
            <artifactId>mes-production</artifactId>
            <version>${mes.version}</version>
        </dependency>
        <dependency>
            <groupId>com.chinaztt.mes</groupId>
            <artifactId>mes-quality</artifactId>
            <version>${mes.version}</version>
        </dependency>
        <dependency>
            <groupId>com.chinaztt.mes</groupId>
            <artifactId>mes-poc</artifactId>
            <version>${mes.version}</version>
        </dependency>
        <dependency>
            <groupId>com.chinaztt.mes</groupId>
            <artifactId>mes-report</artifactId>
            <version>${mes.version}</version>
        </dependency>
        <dependency>
            <groupId>com.chinaztt.mes</groupId>
            <artifactId>mes-outsource</artifactId>
            <version>${mes.version}</version>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
 
    <profiles>
        <profile>
            <id>dev</id>
            <properties>
                <!-- 环境标识,需要与配置文件的名称相对应 -->
                <profiles.active>dev</profiles.active>
            </properties>
            <activation>
                <!-- 默认环境 -->
                <activeByDefault>true</activeByDefault>
            </activation>
        </profile>
        <profile>
            <id>test</id>
            <properties>
                <profiles.active>test</profiles.active>
            </properties>
        </profile>
        <profile>
            <id>prod</id>
            <properties>
                <profiles.active>prod</profiles.active>
            </properties>
        </profile>
    </profiles>
 
</project>