Add Jakarta Validation API dependency and update Reflections dependency

This commit is contained in:
Vincent Guillet
2025-05-20 13:44:41 +02:00
parent eaba56b92d
commit 47ee6f7ef1

View File

@@ -57,16 +57,20 @@
<groupId>jakarta.persistence</groupId> <groupId>jakarta.persistence</groupId>
<artifactId>jakarta.persistence-api</artifactId> <artifactId>jakarta.persistence-api</artifactId>
</dependency> </dependency>
<dependency>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
<version>3.1.0</version>
</dependency>
<dependency> <dependency>
<groupId>com.mysql</groupId> <groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId> <artifactId>mysql-connector-j</artifactId>
<version>9.3.0</version> <version>9.3.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.jetbrains</groupId> <groupId>org.reflections</groupId>
<artifactId>annotations</artifactId> <artifactId>reflections</artifactId>
<version>RELEASE</version> <version>0.10.2</version>
<scope>compile</scope>
</dependency> </dependency>
</dependencies> </dependencies>