Skip to content

Commit 9ce59a0

Browse files
committed
fix build with missing jakarta.validation dependency in cdoc2-server-openapi
1 parent 4d8c470 commit 9ce59a0

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

server-openapi/pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
<relativePath>..</relativePath>
1212
</parent>
1313

14-
15-
1614
<version>0.1.0</version>
1715
<artifactId>cdoc2-server-openapi</artifactId>
1816
<description>CDOC2 server stub generation from OpenAPI spec</description>
@@ -116,6 +114,13 @@
116114
<artifactId>spotbugs-annotations</artifactId>
117115
<version>${spotbugs-annotations.version}</version>
118116
</dependency>
117+
118+
<dependency>
119+
<groupId>jakarta.validation</groupId>
120+
<artifactId>jakarta.validation-api</artifactId>
121+
<version>3.0.2</version>
122+
<scope>compile</scope>
123+
</dependency>
119124
</dependencies>
120125

121126
<build>

0 commit comments

Comments
 (0)