diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2023-09-18 14:54:22 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2023-09-18 14:54:22 +0000 |
commit | a01f8861a84931f4bdf2d69fa05a793afabc22e0 (patch) | |
tree | 566994ff310bf2eb55e32ee7827faeab46373805 /cps-ncmp-events | |
parent | b45c80995966be243a79bedefa25f6c05f64a2d6 (diff) | |
parent | 9693ec51cf6526082f0ad0c3ad208d144cbbb163 (diff) |
Merge "Migrate CPS to Spring-boot 3.0"
Diffstat (limited to 'cps-ncmp-events')
-rw-r--r-- | cps-ncmp-events/pom.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cps-ncmp-events/pom.xml b/cps-ncmp-events/pom.xml index 47b10c959a..f08142e3d3 100644 --- a/cps-ncmp-events/pom.xml +++ b/cps-ncmp-events/pom.xml @@ -36,8 +36,8 @@ <artifactId>jackson-databind</artifactId> </dependency> <dependency> - <groupId>javax.validation</groupId> - <artifactId>validation-api</artifactId> + <groupId>jakarta.validation</groupId> + <artifactId>jakarta.validation-api</artifactId> </dependency> </dependencies> @@ -47,6 +47,7 @@ <groupId>org.jsonschema2pojo</groupId> <artifactId>jsonschema2pojo-maven-plugin</artifactId> <configuration> + <useJakartaValidation>true</useJakartaValidation> <sourceDirectory>${basedir}/src/main/resources/schemas</sourceDirectory> <targetPackage>org.onap.cps.ncmp.event.model</targetPackage> <generateBuilders>true</generateBuilders> |