<?xml version="1.0" encoding="UTF-8"?> <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> <groupId>com.chanko.yunxi</groupId> <artifactId>mes</artifactId> <version>2.0.0-jdk8-snapshot</version> </parent> <groupId>com.chanko.yunxi</groupId> <artifactId>mes-server</artifactId> <version>2.0.0-jdk8-snapshot</version> <name>${project.artifactId}</name> <description>后端 Server 的主项目,通过引入需要 mes-module-xxx 的依赖, 从而实现提供 RESTful API 给 mes-ui-admin、mes-ui-user 等前端项目。 本质上来说,它就是个空壳(容器)!</description> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.4.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.chanko.yunxi</groupId> <artifactId>mes-module-system-biz</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>com.chanko.yunxi</groupId> <artifactId>mes-module-infra-biz</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>com.chanko.yunxi</groupId> <artifactId>mes-spring-boot-starter-biz-error-code</artifactId> </dependency> <dependency> <groupId>com.chanko.yunxi</groupId> <artifactId>mes-module-heli-biz</artifactId> <version>${revision}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.chanko.yunxi</groupId> <artifactId>mes-spring-boot-starter-banner</artifactId> </dependency> <dependency> <groupId>com.chanko.yunxi</groupId> <artifactId>mes-spring-boot-starter-protection</artifactId> </dependency> </dependencies> <build> <finalName>${project.artifactId}</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring.boot.version}</version> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>