私はsbt 0.11.1とxsbt-web-plugin 0.2.10を使用しています
ここに build.sbt と plugins.sbt があります
build.sbt
organization := "org"
name := "demo"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.9.1"
seq(webSettings :_*)
configurationXml :=
<configuration>
<webApp>
<contextPath>/foo</contextPath>
</webApp>
</configuration>
libraryDependencies ++= Seq(
"org.eclipse.jetty" % "jetty-webapp" % "7.4.5.v20110725" % "container",
"javax.servlet" % "servlet-api" % "2.5" % "provided"
)
resolvers += "Sonatype OSS Snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/"
プロジェクト/plugins.sbt
libraryDependencies <+= sbtVersion(v => "com.github.siasia" %% "xsbt-web-plugin" % (v+"-0.2.10"))
sbt コンソールで container:start を実行した後、configurationXml が機能しないようです。contextPath はデフォルト値「/」を取得します。
contextPath を変更するにはどうすればよいですか? 任意のヒント?前もって感謝します!