Reputation:
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>
Upvotes: 1
Views: 1096