Reputation: 733
I have used the following dependeny in my POM
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-sandbox-parent</artifactId>
<version>10</version>
<type>pom</type>
</dependency>
but still I am getting the error
The import org.apache.commons.id cannot be resolved
Upvotes: 1
Views: 1149
Reputation: 733
I finally found something. There is no maven release for Apache Commons Id yet. However we can download the Jar and use.
Upvotes: 0
Reputation: 18642
The artifact id is incorrect. If you look at the pom file for the project, the artifact id should be commons-id
.
Upvotes: 1