Skip to content

Commit

Permalink
Upgrading the ModelMapper to 3.1.2. And moving packages to org.clairv…
Browse files Browse the repository at this point in the history
…oyant
  • Loading branch information
Satya Vadapalli authored and Satya Vadapalli committed Jun 16, 2023
1 parent 830009e commit 79fcd54
Show file tree
Hide file tree
Showing 446 changed files with 1,784 additions and 3,077 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ release.properties
.settings/
_site/
user-manual/
*.iml
*.iml
.DS_Store
19 changes: 19 additions & 0 deletions CHANGES-FORK.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
## Clairvoyant ModelMapper

* Moved the java packages from org.modelmapper to org.clairvoyant.modelmapper
* Added a new method to validate the property mapping org.clairvoyant.modelmapper.ModelMapper#validatePropertyMappings()
* Added a new interface - org.clairvoyant.modelmapper.internal.EntityHolder
* Made the following classes and interfaces public.
* org.clairvoyant.modelmapper.internal.MappingContextImpl
* org.clairvoyant.modelmapper.internal.MappingImpl
* org.clairvoyant.modelmapper.internal.Mutator
* org.clairvoyant.modelmapper.internal.PropertyInfoImpl
* org.clairvoyant.modelmapper.internal.MethodAccessor
* org.clairvoyant.modelmapper.internal.PropertyMappingImpl

* Made the following methods public.
* org.clairvoyant.modelmapper.internal.MappingContextImpl#setParentSource(Object parentSource)
* org.clairvoyant.modelmapper.internal.MappingContextImpl#getParentSource()

* Modified the method org.clairvoyant.modelmapper.internal.MappingEngineImpl#propertyMap
* Modified the method org.clairvoyant.modelmapper.internal.MappingEngineImpl#resolveSourceValue
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ModelMapper
[![CI](https://github.com/modelmapper/modelmapper/actions/workflows/ci.yml/badge.svg)](https://github.com/modelmapper/modelmapper/actions/workflows/ci.yml)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.modelmapper/modelmapper/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.modelmapper/modelmapper)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.clairvoyant.modelmapper/modelmapper/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.clairvoyant.modelmapper/modelmapper)
[![License](http://img.shields.io/:license-apache-brightgreen.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)

ModelMapper is an intelligent object mapping library that automatically maps objects to each other. It uses a convention based approach while providing a simple refactoring safe API for handling specific use cases.
Expand Down
4 changes: 2 additions & 2 deletions benchmarks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<parent>
<artifactId>modelmapper-parent</artifactId>
<groupId>org.modelmapper</groupId>
<groupId>org.clairvoyant</groupId>
<version>3.1.2-SNAPSHOT</version>
</parent>

Expand All @@ -17,7 +17,7 @@

<dependencies>
<dependency>
<groupId>org.modelmapper</groupId>
<groupId>org.clairvoyant.modelmapper</groupId>
<artifactId>modelmapper</artifactId>
<version>${project.version}</version>
</dependency>
Expand Down

This file was deleted.

13 changes: 0 additions & 13 deletions benchmarks/src/main/java/org/modelmapper/benchmarks/Main.java

This file was deleted.

Loading

0 comments on commit 79fcd54

Please sign in to comment.