Maven dependency error in bonigarcia and redis.clients

268 Views Asked by At

In my pom.xml file out of all dependencies these 2 dependencies are giving error

 <dependency>
        <groupId>redis.clients</groupId>
        <artifactId>jedis</artifactId>
        <version>3.8.0</version>
    </dependency>

<dependency>
    <groupId>io.github.bonigarcia</groupId>
    <artifactId>webdrivermanager</artifactId>
    <version>3.8.1</version>
</dependency>

I have tried changing the versions, adding for these dependencies and mvn clean install. But still not able to resolve this dependency error.

My maven version is 3.6.3 and Java version is 16.0.1

Error Screenshot

0

There are 0 best solutions below