8

私は立ち往生しています。

私はMacを使用しており、brewでタイプセーフスタックをインストールしました

play new appnameを使用して新しい play プロジェクトを作成しましたが、すべて問題ありません。

play ideaを使用して intelliJ にインポートしようとしていますが、これを行うと次のエラーが発生します。

[error] no sbt-idea plugin for this version of sbt - 0.11.3

遊びがあります!2.0.3 および sbt 0.11.3

これを実際に修正する方法はありますか?

4

1 に答える 1

9

まず、次の手順に従っていることを確認してください:公式のインストール手順

これにより、現在、次の例外が発生します。

java.lang.NoSuchMethodError: org.sbtidea.SbtIdeaPlugin$.ideaSettings()Lscala/collection/Seq; at
sbt.PlayCommands$class.intellijCommandSettings(PlayCommands.scala:214)

現在の修正は、project.plugins.sbt ファイルを次のように編集して 2.0.1 を再生するようにダウングレードすることです。

// Comment to get more information during initialization
logLevel := Level.Warn

// The Typesafe repository
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"

// Use the Play sbt plugin for Play projects
addSbtPlugin("play" % "sbt-plugin" % "2.0.1")

これで今のところ問題は解決しているようです。

于 2012-09-09T10:08:04.887 に答える