<?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>
|