diff options
author | Rashmi Pujar <rashmi.pujar1@bell.ca> | 2022-02-22 01:39:00 -0500 |
---|---|---|
committer | Rashmi Pujar <rashmi.pujar1@bell.ca> | 2022-02-23 01:01:51 -0500 |
commit | bc9b5183122abf075bc48b4c7add2ad1ef887fad (patch) | |
tree | bcd320681437b13e91c75ee547bdc2ef951f531f /main/pom.xml | |
parent | 19efd9034bd19bea5e2506328ee59bf5d3f27172 (diff) |
Spring repository and service layer for policy-api
- Add the spring repository and service layers to policy-api.
- Unit tests are modified to use the spring service layers
Next-up: Migrate the usage of policy-models-provider in policy-api
to spring boot based services to talk to database (POLICY-3924)
Issue-ID: POLICY-3923
Signed-off-by: Rashmi Pujar <rashmi.pujar1@bell.ca>
Change-Id: Ib6840040b32f24f019da802d3b246dab1bfccbe3
Diffstat (limited to 'main/pom.xml')
-rw-r--r-- | main/pom.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/main/pom.xml b/main/pom.xml index fffaa03f..963f6d4c 100644 --- a/main/pom.xml +++ b/main/pom.xml @@ -96,6 +96,11 @@ <version>${version.springboot.actuator}</version> </dependency> <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-data-jpa</artifactId> + <version>${version.springboot}</version> + </dependency> + <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-registry-prometheus</artifactId> <version>${version.io.micrometer}</version> |