Skip to content

Commit

Permalink
Dependency Updates and Changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Geoffrey Wiseman <[email protected]>
  • Loading branch information
geoffreywiseman committed Aug 1, 2018
1 parent 37910d2 commit 2379b4c
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 6 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [2.1.0] - 2017-08-01

### Added
- List item factories using `@CollectionProperty(itemFactory=FactoryClass.class)`

### Changed
- Made a series of small dependency updates:
- Maven SCM, Release and Compiler plugins
- MVEL
- JUnit
- SLF4J
- Mockito
- Logback


## [2.0] - 2014-05-23
For more details, see the [Wiki entry](https://github.com/geoffreywiseman/Moo/wiki/Release-2.0).

### Added
- *Item Source Expressions*: This allows the the mapping of an item in a collection
to a property of that source item in the destination.
- *Map Translation*: Support for the translation of maps.
- Translating objects to strings.
- `TranslationTargetFactory` allowing the target's implementation to be controlled somewhat.
- Cross-collection translation, like translating a list to a set.

### Changed
- Moved to a multi-module build.
- Split `moo-mvel` into a separate module for people who didn't want or need MVEL.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* The type that will be used to instantiate item classes, or {@link DefaultObjectTargetFactory} if the
* default item factory will be used.
*
* @return a class implementing {@link ItemFactory}
* @return a class implementing {@link TranslationTargetFactory}
*/
Class<? extends TranslationTargetFactory> itemFactory() default DefaultObjectTargetFactory.class;

Expand Down
2 changes: 1 addition & 1 deletion moo-mvel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>org.mvel</groupId>
<artifactId>mvel2</artifactId>
<version>2.1.5.Final</version>
<version>2.4.0.Final</version>
</dependency>

<!-- Mockito -->
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<version>4.12</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
Expand All @@ -119,17 +119,17 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.5</version>
<version>1.7.25</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.11</version>
<version>1.2.3</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.9.5</version>
<version>2.21.0</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit 2379b4c

Please sign in to comment.