Use Oracle jdbc driver in jira plugin

Maciej Kawczyński April 16, 2021

I got a problem with access to oracle jdbc driver placed in /opt/atlassian/jira/lib with my own plugin. I got oracle.jdbc.driver.OracleDriver not found by error. In pom.xml there is an entry:

 <dependency>
<groupId>com.oracle.ojdbc</groupId>
<artifactId>ojdbc8</artifactId>
<version>19.3.0.0</version>
<scope>provided</scope>
</dependency>

im trying to get the driver using: Class.forName("oracle.jdbc.driver.OracleDriver");

Jira is 8.4.3 version, oracle driver placed in lib is 19.3 version.

 

0 answers

Suggest an answer

Log in or Sign up to answer