我想在我的游戏中使用the Mailer Plugin! 2 Java应用程序。
我按照自述文件中给出的说明进行操作,但模块没有显示在我的应用程序的依赖项中。
所以当我尝试编译它时!给我一个错误:
object plugin is not a member of package com.typesafe
我尝试重新加载项目并仔细检查/project
中的文件。到目前为止没有任何工作。
有没有办法强迫玩!检查应用程序的依赖项?
更新
好的,新的错误消息。我删除了/project/project/
,/project/target/
和/target/
。下次我开始玩!获得所有模块需要相当长的时间。它没有下载Mailer-Plugin
但现在我明白了:
play.api.PlayException: Cannot load plugin [Plugin [com.typesafe.plugin.CommonsMailerPlugin] cannot been instantiated.]
接下来是:
Caused by: java.lang.ClassNotFoundException: com.typesafe.plugin.CommonsMailerPlugin
任何想法?
更新2:
好的,我通过直接从typesafe下载play-plugins-mailer_2.9.1-2.0.4.jar并将其放入/lib
来修复。这绝对不是正确的方法,但至少它现在有效
我需要的.jar才能玩! 2.0.3项目:http://repo.typesafe.com/typesafe/releases/com/typesafe/play-plugins-mailer_2.9.1/2.0.4/
更新3:
相关文件的内容:
Build.scala:
import sbt._
import Keys._
import PlayProject._
object ApplicationBuild extends Build {
val appName = "thesis"
val appVersion = "0.9"
val appDependencies = Seq(
"com.typesafe" %% "play-plugins-mailer" % "2.0.4"
)
val main = PlayProject(appName, appVersion, mainLang = JAVA).settings(
lessEntryPoints <<= baseDirectory(_ / "app" / "assets" / "stylesheets" ** "bootstrap.less"),
templatesImport += "helper._",
templatesImport += "views.html.Helpers._"
)
}
build.properties:
sbt.version=0.11.3
plugins.sbt:
// Comment to get more information during initialization
logLevel := Level.Info
// 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.3")
CONF / play.plugins:
1500:com.typesafe.plugin.CommonsMailerPlugin
答案 0 :(得分:0)
好的,为了玩!管理我的依赖项我必须在旧文件上创建一个新的项目副本(不包括已经编译的代码),编辑Build.scala
并在剧中重新加载/编译项目!控制台。
现在它有效! Mailer插件被下载,编译并play dependencies
列出它。