Reputation: 4990
I need to use Dozer 6.5.0 (because of this) so I added the following snippet from MVNrepository into my pom.xml
.
<!-- https://mvnrepository.com/artifact/com.github.dozermapper/dozer-core -->
<dependency>
<groupId>com.github.dozermapper</groupId>
<artifactId>dozer-core</artifactId>
<version>6.5.0</version>
</dependency>
The project builds, but there are multiple problems.
~[dozer-5.5.1.jar:na]
and the bug persists.Dependency 'com.github.dozermapper:dozer-core:6.5.0' not found
.I think it uses the older version from some other maven repository I use. It imports org.dozer.Mapper
. How can I use the latest version?
Upvotes: 1
Views: 2283
Reputation: 4990
There were two problems.
pom.xml
Now it works. Don't know why the Dozer JAR was not retrieved automatically by Maven, though.
Upvotes: 1