Base classes for Domain Driven Design (DDD) with Java.
Java 11 for releases >= 0.3.0 / Java 8 <= 0.2.1
You can find the documentation of the project at gitbook (Work in progress - Just started!).
http://de.slideshare.net/michael-schnell/ddd-4java/ (Rather old - The git book above is a bit more up-to-date)
See ddd-cqrs-4-java-example for example microservices using the classes of this library.
Snapshots can be found on the OSS Sonatype Snapshots Repository.
Add the following to your .m2/settings.xml to enable snapshots in your Maven build:
<repository>
<id>sonatype.oss.snapshots</id>
<name>Sonatype OSS Snapshot Repository</name>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>