Naga K
Naga K

Reputation: 733

The import org.apache.commons.id cannot be resolved

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

Answers (2)

Naga K
Naga K

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

The artifact id is incorrect. If you look at the pom file for the project, the artifact id should be commons-id.

Upvotes: 1

Related Questions