<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.persagy</groupId> <artifactId>saas-platform</artifactId> <version>0.0.1-SNAPSHOT</version> </parent> <artifactId>saas-gateway</artifactId> <description>saas platform gateway</description> <dependencies> <!-- 依赖自定义jar --> <dependency> <groupId>com.persagy</groupId> <artifactId>saas-common</artifactId> </dependency> <dependency> <groupId>com.persagy</groupId> <artifactId>integrated-config-client</artifactId> </dependency> <dependency> <groupId>com.persagy</groupId> <artifactId>integrated-ribbon-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>com.persagy</groupId> <artifactId>integrated-redis-spring-boot-starter</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </exclusion> </exclusions> </dependency> <!-- 网关依赖 --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-gateway</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-webflux</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-registry-prometheus</artifactId> </dependency> </dependencies> <build> <finalName>${project.artifactId}</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>