Github user alfonsonishikawa commented on a diff in the pull request:
https://github.com/apache/gora/pull/135#discussion_r222505121
--- Diff: bin/compile-examples.sh ---
@@ -36,8 +36,57 @@ DIR=$GORA_HOME/$MODULE/src/examples/avro/
OUTDIR=$GORA_HOME/$MODULE/src/examples/java
GORA_BIN=$GORA_HOME/bin/gora
+rm -r $OUTDIR/org/apache/gora/examples/generated/*
--- End diff --
I found that the compile-examples script was vastly outdated. I updated
it, but still needs to have compiled the module 'gora-compiler-cli', so,
running the first time must do:
```
mvn package
// wait for compile crash after gora-compiler-cli module
bin/compile-examples.sh
mvn package
```
---