deluf Asked: 2020-05-01 08:08:36 +0800 CST 2020-05-01 08:08:36 +0800 CST 2020-05-01 08:08:36 +0800 CST maven takes care of installing all dependencies? 772 I'm doing some crud tests with spring-boot, but in the dependency of ojdbc stays in red, I think it is not being imported. maven 2 Answers Voted Best Answer Angel Angel 2020-05-01T08:26:30+08:002020-05-01T08:26:30+08:00 try to use this: <dependency> <groupId>com.github.noraui</groupId> <artifactId>ojdbc7</artifactId> <version>12.1.0.2</version> </dependency> look at the groupId ->com.github.noraui Vladimir G.M. 2020-05-12T07:35:52+08:002020-05-12T07:35:52+08:00 From what I understand, it is because Oracle asks for a username and password when you want to download its products. We had a similar problem, we solved it like this. <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc14</artifactId> <version>14</version> </dependency>
try to use this:
look at the groupId ->
com.github.noraui
From what I understand, it is because Oracle asks for a username and password when you want to download its products.
We had a similar problem, we solved it like this.