maven is responsible for installing all the dependencies?

2

I'm doing some tests of crud with spring-boot, but in the dependence of

ojdbc remains in red, I think it is not being imported.

    
asked by deluf 30.04.2017 в 18:08
source

2 answers

2

try using this:

<dependency>
    <groupId>com.github.noraui</groupId>
    <artifactId>ojdbc7</artifactId>
    <version>12.1.0.2</version>
</dependency>

look at the group Id - > com.github.noraui

    
answered by 30.04.2017 / 18:26
source
1

From what I understand, it's because Oracle asks for username and password when you want to download their products.

We had a similar problem, we solved it like that.

    <dependency>
        <groupId>com.oracle</groupId>
        <artifactId>ojdbc14</artifactId>
        <version>14</version>
    </dependency>
    
answered by 11.05.2017 в 17:35