<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>newfiber-system</artifactId> <groupId>com.newfiber</groupId> <version>1.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> <packaging>jar</packaging> <description> newfiber-system-package 打包模块 </description> <artifactId>newfiber-system-package</artifactId> <dependencies> <!-- Newfiber system Core --> <dependency> <groupId>com.newfiber</groupId> <artifactId>newfiber-system-core</artifactId> </dependency> <!-- Newfiber system Sms --> <dependency> <groupId>com.newfiber</groupId> <artifactId>newfiber-system-sms</artifactId> </dependency> <dependency> <groupId>com.newfiber</groupId> <artifactId>newfiber-system-operation</artifactId> </dependency> </dependencies> <build> <finalName>newfiber-system</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>