2025-12-30 03:14:25 +00:00
|
|
|
<?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>tacit-parent</artifactId>
|
|
|
|
|
<groupId>com.tacit</groupId>
|
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>tacit-gateway</artifactId>
|
|
|
|
|
<name>Tacit Gateway</name>
|
|
|
|
|
<description>Gateway Service for Tacit Microservices</description>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- Spring Cloud Gateway -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-gateway</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Spring Security -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2026-01-04 07:50:35 +00:00
|
|
|
<!-- Common Modules -->
|
2025-12-30 03:14:25 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.tacit</groupId>
|
2026-01-04 07:50:35 +00:00
|
|
|
<artifactId>common-model</artifactId>
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2026-01-08 09:18:54 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.tacit</groupId>
|
|
|
|
|
<artifactId>common-redis</artifactId>
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2026-01-04 07:50:35 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.tacit</groupId>
|
|
|
|
|
<artifactId>common-core</artifactId>
|
2025-12-30 03:14:25 +00:00
|
|
|
<version>${project.parent.version}</version>
|
2025-12-30 08:48:44 +00:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Spring Cloud Bootstrap for loading bootstrap.yml in Spring Boot 3.x -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-bootstrap</artifactId>
|
2025-12-30 03:14:25 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
2026-01-04 07:50:35 +00:00
|
|
|
<!-- Spring Cloud Alibaba Nacos Config -->
|
2025-12-30 03:14:25 +00:00
|
|
|
<dependency>
|
2026-01-04 07:50:35 +00:00
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
2025-12-30 03:14:25 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
2026-01-04 07:50:35 +00:00
|
|
|
<!-- Spring Cloud Alibaba Nacos Discovery -->
|
2025-12-30 03:14:25 +00:00
|
|
|
<dependency>
|
2026-01-04 07:50:35 +00:00
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
2025-12-30 03:14:25 +00:00
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<skip>false</skip>
|
2025-12-30 08:48:44 +00:00
|
|
|
<mainClass>com.tacit.gateway.GatewayApplication</mainClass>
|
2025-12-30 03:14:25 +00:00
|
|
|
</configuration>
|
2025-12-30 08:48:44 +00:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<mainClass>com.tacit.gateway.GatewayApplication</mainClass>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2025-12-30 03:14:25 +00:00
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|