Shanedell commented on PR #261:
URL: https://github.com/apache/daffodil-vscode/pull/261#issuecomment-1378092642
So we could use
```sbt
"com.typesafe.play" %% "play-json" % "2.9.3"
```
instead of `sbt-json`. Its license under ALv2 so it would be compatible and
when I tested switching it in for `sbt-json` it worked fine. The only thing was
I couldn't add it as a plugin to `project/plugins.sbt` I have to it this way
inside of that file.
```sbt
libraryDependencies ++= Seq(
"com.typesafe.play" %% "play-json" % "2.9.3"
)
```
The reason for adding it to `project/plugins.sbt` like that is because the
`build.sbt` imports that package to get the version from the `package.json`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]