Adding Play JSON Library to sbt

后端 未结 5 1862
半阙折子戏
半阙折子戏 2020-11-29 03:47

How can I add the Play JSON library (play.api.libs.json) to my sbt project?

When I added the following to my plugins.sbt file:



        
5条回答
  •  心在旅途
    2020-11-29 04:35

    One could check the Getting Started section of the GitHub repository and add the following to the build.sbt file:

    libraryDependencies += "com.typesafe.play" %% "play-json" % "2.6.0-M1"
    

提交回复
热议问题