I'm using SpringBoot with Intellij IDEA. I believe I have all the dependencies needed. Still I keep getting PostgreSQL driver not found error. Here are the dependencies in the Gradle File.
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-rest'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-jersey'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
runtimeOnly 'org.springframework.boot:spring-boot-devtools'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}