You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the project ! I'm running into a small issue. In my build I set :
(Compile / scalaxbGenerateRuntime) := false
When I run show Compile / scalaxbGenerateRuntime it is indeed false, but when I run the compilation it still generates me the xmlprotocol.scala file, as well as the scalaxb.scala one. From what I understood, it generates mappers from/to XML for the user, but I do not need those, just the XSD -> Scala code once at compile. Worse some of the generated code in those files gets flagged by compiler options for unused values. I can filter them, but still.
Moreover if I read my build :
[warn] there's a key that's not used by any other settings/tasks:
[warn]
[warn] * xxxx / Compile / scalaxbGenerateRuntime
[warn] +- /home/centos/Documents/IdeaProjects/xxxx/project/Defaults.scala:83
[warn]
[warn] note: a setting might still be used by a command; to exclude a key from this `lintUnused` check
[warn] either append it to `Global / excludeLintKeys` or call .withRank(KeyRanks.Invisible) on the key
Thanks for the project ! I'm running into a small issue. In my build I set :
(Compile / scalaxbGenerateRuntime) := false
When I run
show Compile / scalaxbGenerateRuntime
it is indeed false, but when I run the compilation it still generates me thexmlprotocol.scala
file, as well as thescalaxb.scala
one. From what I understood, it generates mappers from/to XML for the user, but I do not need those, just the XSD -> Scala code once at compile. Worse some of the generated code in those files gets flagged by compiler options for unused values. I can filter them, but still.Moreover if I read my build :
Versions :
The text was updated successfully, but these errors were encountered: