tacit/tacit-gateway/pom.xml

99 lines
3.6 KiB
XML
Raw Normal View History

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>
<!-- Common Module -->
<dependency>
<groupId>com.tacit</groupId>
<artifactId>tacit-common</artifactId>
<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>
2026-01-04 01:52:21 +00:00
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jdbc</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</exclusion>
<exclusion>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
</exclusion>
2025-12-30 08:48:44 +00:00
</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>
<!-- Lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
2025-12-30 08:48:44 +00:00
<version>${lombok.version}</version>
2025-12-30 03:14:25 +00:00
<scope>provided</scope>
</dependency>
2025-12-30 08:48:44 +00:00
<!-- Testing -->
2025-12-30 03:14:25 +00:00
<dependency>
<groupId>org.springframework.boot</groupId>
2025-12-30 08:48:44 +00:00
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
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>