JDBC Download
https://www.oracle.com/ch-de/database/technologies/appdev/jdbc-downloads.html
Installing Oracle JDBC Driver in Maven Local Repository:
mvn install:install-file -Dfile=ojdbc11.jar -DgroupId=com.oracle -DartifactId=ojdbc11 -Dversion=21.11.0.0 -Dpackaging=jar
Referencing:
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc11</artifactId>
<version>21.11.0.0</version>
</dependency>