ehmkah / avro_poc

repo for avro plugin bug report

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Why does work with:

Why does it not work with:

  • ./gradlew assemble --debug --stacktrace

What the reason might be

Maybe definition of map in Comple.avsc is wrong and plugin can not detect correct order how to generate files.

{
           "name": "fooComplex",
           "type": {
               "type": "map",
               "values": {
                   "type": "Simple"
               }
           }
      }

If I change the definition to

 {
    "name": "fooComplex",
    "type": {
        "type": "map",
        "values": "Simple"
    }
}

Than plugin works.

About

repo for avro plugin bug report

License:Apache License 2.0