<?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-data-connect</artifactId> <groupId>com.newfiber</groupId> <version>1.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> <packaging>jar</packaging> <description> newfiber-data-connect-main 打包模块 </description> <artifactId>newfiber-data-connect-main</artifactId> <dependencies> <dependency> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-mqtt</artifactId> </dependency> <!-- <!– Newfiber Common Datasource –>--> <!-- <dependency>--> <!-- <groupId>com.newfiber</groupId>--> <!-- <artifactId>newfiber-common-datasource</artifactId>--> <!-- </dependency>--> <!-- Druid --> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>com.dameng</groupId> <artifactId>DmJdbcDriver18</artifactId> </dependency> <!-- Newfiber Common Swagger --> <dependency> <groupId>com.newfiber</groupId> <artifactId>newfiber-common-swagger</artifactId> </dependency> <!-- Newfiber Common Core --> <dependency> <groupId>com.newfiber</groupId> <artifactId>newfiber-common-core</artifactId> </dependency> </dependencies> <build> <finalName>newfiber-data-connect</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>