diff options
Diffstat (limited to 'models-provider/pom.xml')
-rw-r--r-- | models-provider/pom.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/models-provider/pom.xml b/models-provider/pom.xml index 35e201476..6cba36898 100644 --- a/models-provider/pom.xml +++ b/models-provider/pom.xml @@ -69,6 +69,7 @@ <groupId>org.onap.policy.common</groupId> <artifactId>utils</artifactId> <version>${policy.common.version}</version> + <scope>provided</scope> </dependency> <dependency> <groupId>org.onap.policy.models</groupId> @@ -77,6 +78,24 @@ <scope>test</scope> </dependency> <dependency> + <groupId>jakarta.persistence</groupId> + <artifactId>jakarta.persistence-api</artifactId> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>jakarta.ws.rs</groupId> + <artifactId>jakarta.ws.rs-api</artifactId> + </dependency> + <dependency> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + </dependency> + <dependency> + <groupId>org.hibernate.orm</groupId> + <artifactId>hibernate-core</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> |