On Jan 16, 2012, at 10:23 PM, Steve Ebersole wrote:
> Some folks have been working on a release plugin for Gradle and just
> released their first version.
>
> http://tellurianring.com/wiki/gradle/release
>
> Want to take a look at it and see if it meets our basic needs. The hope
> is that it
In talking with few people that use this feature, there is def a desire
to account for both immutable-with-checking and
immutable-without-checking.
Initially I started down the path of an enum to model this:
public enum NaturalIdMutability {
MUTABLE,
IMMUTABLE,
IMMUTABLE_CHECKED,