-
-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Closed
Labels
Description
Problem
We are using a lot of override values for what to generate and how, this results in a big list of models we want to generate. Our maven pom looks something like:
<modelsToGenerate>object1,object2,object3......object24</modelsToGenerate>
when trying to make it better readable we tried placing these objects onto new line but that results in only the first one to be generated and the rest are not generated. Example:
<modelsToGenerate>object1,
object2,
object3
</modelsToGenerate>
this results in
[7,42] error: cannot find symbol
[ERROR] symbol: class object2
[ERROR] location: package com.example.model
Preferred solution
Make it so that modelsToGenerate works when placing each object on a new line, example:
<modelsToGenerate>object1,
object2,
object3
</modelsToGenerate>
Reactions are currently unavailable