-
I am getting the following NPE:
```
1) Failed to configure mappings
1 error
at org.modelmapper.internal.Errors.throwConfigurationExceptionIfErrorsExist(Errors.java:241)
at org…
-
It looks like there was a fix for this in https://github.com/modelmapper/modelmapper/issues/46, but that code is not present in master anymore for some reason. Can someone work on merging that fix bac…
-
Hi, i was making some tests with modelmapper and i noticed the loose matching strategy, i have a jaxb generated model as destination and a simple flat object as source (it contains all the leaf fields…
-
Hi,
maybe i am doing something wrong, but i think it should be possiblie to resolve multiple source matches with a typemap.
```java
import org.junit.Test;
import org.modelmapper.ModelMapper;
…
-
Here are the source objects :
```java
import java.util.List;
public class Obj1 {
private List obj2;
public List getObj2() {
return obj2;
}
public void setObj2(List obj2) {
thi…
-
Hi, we have not upgrades our versions in quite some time. However, the interdependencies is an issue.
Sorry for a general message:
What would be the latest working versions with maven, java/jdk, gro…
-
Hi,
Having two types with some boxing of enum.
I have defined to ignore the mapping of this enum explicitly and the box mapping .
Test fails.
When i remove the box mapping of the TypeA => Type…
-
Does this library support Android?
I am creating an application and decided to use [modelmapper](https://github.com/modelmapper/modelmapper) (great work BTW!).
Until now, I had no problems with …
-
Next test fails in the current release:
``` java
@Test
public void testConverterToInterface() throws Exception {
ModelMapper modelMapper = new ModelMapper();
modelMapper.addCo…
-
This might be related to #153.
I have written a somewhat generic `Converter` that can be used to convert between different very similar `enum`s. However, the following test fails
``` java
package my…