Files
patbond-api/patbond-common/pom.xml
T
2026-09-03 17:59:56 +08:00

35 lines
1.3 KiB
XML

<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.patbond.patbond</groupId>
<artifactId>patbond-api</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>patbond-common</artifactId>
<packaging>jar</packaging>
<name>patbond-common</name>
<description>Stable cross-module contracts and base types for Patbond services</description>
<!-- Contract-only module: keep dependencies to the validation API the shared
DTOs are annotated with. Web, messaging, and Feign concerns live in the
service modules that actually need them (development-plan 4.1). -->
<dependencies>
<dependency>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>