如何设置jetty端口xsbt插件1.0.0-M7

时间:2014-09-22 11:35:49

标签: scala xsbt

我刚刚从x.0bt web插件的0.9.0升级到1.0.0-M7。但是我的build.scala现在不再编译了。我通过执行以下操作来设置码头端口:

import com.earldouglas.xsbtwebplugin.PluginKeys.port
import com.earldouglas.xsbtwebplugin.WebPlugin.{container, webSettings}

... // in my Build object
  def Conf = config("container")
  def jettyPort = 8081

但是在升级之后,编译器再也找不到导入给我错误的导入了。我一直无法找到设置此端口的正确方法的更新样本。

由于 DES

import com.earldouglas.xsbtwebplugin.PluginKeys.port
[error]                        ^
[error] .../project/build.scala:9: object xsbtwebplugin is not a member of package com.earldouglas

1 个答案:

答案 0 :(得分:0)

  1. 包已更改为com.earldouglas.xwp
  2. 要获取码头的设置,您必须调用jetty(...)。此方法存在于com.earldouglas.xwp.XwpPlugin对象中。
  3. 请参阅readme