I found that using json4s native
<dependency>
<groupId>org.json4s</groupId>
<artifactId>json4s-native_2.10</artifactId>
<version>3.2.9</version>
</dependency>
contains scalap and scala compiler dependencies.
Why is this needed?
Does it generate code on the fly at runtime?
Why doesn't he use macros that do this processing at compile time?
source
share