Search code examples
oracleauditjavers

Oracle repository dependency for javers


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?


Solution

  • 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