1

Play2 ライブラリの一部 (Json API や WS API など) を別の scala プロジェクトで使用したいと考えています。libraryDependencyのリストにライブラリを追加する方法はありますかbuilt.scala。または、何か他のことをする必要があるかもしれません。

どうもありがとう!

4

1 に答える 1

1

To depend on play-core we need to add in build.sbt:

scalaVersion :="2.10.0"

libraryDependencies ++= Seq("play" % "play_2.10" % "2.1.0")

resolvers ++= Seq("Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/")

this for scala and play version 2.1. Additional links here and here.

于 2013-05-20T21:05:25.690 に答える