From 0eb76410596096d64d4d5896da58db6fa8479910 Mon Sep 17 00:00:00 2001 From: Andrea Cavalli Date: Mon, 1 Mar 2021 21:08:35 +0100 Subject: [PATCH] Update README --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bfdf6b2..2ef0b0e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ Data generator ============== -Maven plugin to generate data classes from a .yaml definition file. +Maven plugin to generate upgradable data classes and serializers from a .yaml definition file. It can be also executed standalone. @@ -8,6 +8,8 @@ The data is serializable and upgradable from any version to the latest. The transformations between each version are defined in the .yaml file itself. -Supports custom (external) data types, custom data arrays, custom data optionals, interfaces with common getters / setters. +Supports custom (external) data types, custom data arrays, custom data optionals, +interfaces with common getters / setters. -The serialized data is very lightweight: it serializes only the data, without any metadata or type specification, because it's all deducted on compile-time from the definitions file. +The serialized data is very lightweight: it serializes only the data, without any metadata or type specification, +because it's all deducted on compile-time from the definitions file.