1

I wanted to persist audit changes to oracle db. The micro-service is a spring boot application with hibernate. I found many dependencies in this link mvn repository link for javers

Which dependency should I be using for oracle db?

a_good_human
  • 544
  • 3
  • 12

1 Answers1

2

I added the following dependency and it worked.

<dependency>
            <groupId>org.javers</groupId>
            <artifactId>javers-spring-boot-starter-sql</artifactId>
            <version>5.8.13</version>
</dependency>

referred this link, javers repository configuration link

a_good_human
  • 544
  • 3
  • 12