user6663706
user6663706

Reputation:

Failed to read artifact desriptor for com.h2 database Spring MVC

I want to set up a com.h2database in my project. In my pom.xml file, I am having a problem with the artifact descriptor.

code:

<dependency>
    <groupId>com.h2database</groupId>
    <artifactId>h2</artifactId>   <-------Here is problem
    <version>1.4.194</version>
</dependency>

Error: Screenshot of Error

Output from Console:
Screenshot of console output

Upvotes: 1

Views: 1096

Answers (1)

Kabali Dilli
Kabali Dilli

Reputation: 21

modify the version no 196 instead of 197, its working fine.

Upvotes: 2

Related Questions