-
Notifications
You must be signed in to change notification settings - Fork 8
Getting Moo
Geoffrey Wiseman edited this page May 14, 2014
·
2 revisions
If you'd like to get Moo, there are lots of ways to do that.
If you'd like to download Moo JARs directly, you can download them from the Maven central repository.
If you're using Maven, your project can easily depend on Moo:
<dependency>
<groupId>com.codiform</groupId>
<artifactId>moo-core</artifactId>
<version>2.0</version>
</dependency>
Or, if you're using Maven and you'd like to use Moo with MVEL:
<dependency>
<groupId>com.codiform</groupId>
<artifactId>moo-mvel</artifactId>
<version>2.0</version>
</dependency>
You can, of course, clone the Git repository from GitHub, then build Moo for yourself. This would even give you the option of customizing Moo, as well as the option of fixing any bugs you create for yourself.
- Five Minute Introduction
- Getting Moo
- Translating Object Properties
- Translating Collection Properties
- Translating Map Properties
- Source Expressions
- Access Modes
- Translating to Value Types
- Extensions
- External Objects in Translation
- Ignoring Properties
- Updating Collections
- Translation Target Factories
- Nested Updates
- Optional and Required Properties
- Order of Property Translation
- Constructors
- Lookup on Update
- Caching
Releases
Background