Closed simasch closed 1 year ago
<dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> </dependency>
should be
<dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>runtime</scope> </dependency>
Usually the developer doesn't want to directly interact with the database driver classes.
This has been fixed and deployed
should be
Usually the developer doesn't want to directly interact with the database driver classes.