Hello guys,
I have a big problem.
I'm using Active Objects in my application. With Active Objects I'm using jira database. I don't have problem with AO, It's working well.
But in my jira I need to get informations from another database (Oracle).
I put in my pom.xml:
<dependency>
<groupId>jdbc</groupId>
<artifactId>jdbc-oracle</artifactId>
<version>11.1.0.7</version>
</dependency>
When I put this, my plugin stop to work and I have this error:
Caused by: org.osgi.framework.BundleException: Unresolved constraint in bundle (CLASS_PLUGIN) [185]: Unable to resolve 185.0: missing requirement [185.0] osgi.wiring.package; (osgi.wiring.package=com.sun.security.auth.module)
When I change to:
<dependency>
<groupId>jdbc</groupId>
<artifactId>jdbc-oracle</artifactId>
<version>11.1.0.7</version>
<scope>provided</scope>
</dependency>
I don't have any error but when I run my code:
Class.forName("oracle.jdbc.driver.OracleDriver");
I have:
java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver not found by ... [166]
What can I do to fix this problem ?
thanks
<scope>provided</scope>
means that application will have (what's not the case in our situation, obviously) this package already at the time your plugin will start to be deployed - "these classes will be provided at runtime by the product".
To use third-party code in your plugin you should use <scope>compile</scope>
https://developer.atlassian.com/server/framework/atlassian-sdk/managing-dependencies/
Still the same issue. Trying for jira server 8.5.1 with
<dependency>
<groupId>com.oracle.jdbc</groupId>
<artifactId>ojdbc8</artifactId>
<version>12.2.0.1</version>
</dependency>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Natively JIRA supports connections to Oracle databases (for storing JIRA data). However with JIRA 7, it only supports Oracle 12c. As such our installation packages are actually shipping an existing jdbc driver. I think this file is in the install folder/lib and tends to be named ojdbc7.jar or something alike. I think you might still be able to use this 12 driver for connecting to an 11 database, but I'm not sure.
I did notice that in the JIRA dbconfig.xml if you configure JIRA to use Oracle as the database that stores JIRA data, the format of the dbconfig lists the driver-class value as "oracle.jdbc.OracleDriver". But I see in your code it is listed as "oracle.jdbc.driver.OracleDriver". Try changing the class name to match my example and see if that works.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
do you have exactly dependency in your pom where could send me ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.