0

我正在尝试使用码头 gradle 插件来运行码头服务器进行功能测试。但是,我得到一个java.lang.IllegalArgumentException: Object is not of type class org.mortbay.jetty.webapp.WebAppContext.

我已按照此处显示的示例进行操作,但看不出我在做什么不同。构建文件的相关部分如下所示:

apply plugin: 'jetty'
dependencies {
    providedRuntime 'com.h2database:h2:1.3.167'
    providedRuntime 'commons-dbcp:commons-dbcp:1.4'
}

jettyRunWar {
  httpPort = 8083
  stopPort = 8085
  stopKey = "stopKey"
  jettyConfig = file("$projectDir/jetty-config/jetty.xml")
}

jettyStop {
  stopPort = 8085
  stopKey = "stopKey"
}

我的 jetty.xml 看起来像:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd">
<Configure class="org.mortbay.jetty.webapp.WebAppContext">
 <Set name="contextPath">/gateway</Set>
 <New class="org.mortbay.jetty.plus.naming.Resource">
     <Arg>
     </Arg>
     <Arg>jdbc/gateway</Arg>
     <Arg>
         <New class="org.apache.commons.dbcp.BasicDataSource">
             <Set name="url">jdbc:h2:tcp://localhost/build/db; USER=sa</Set>
         </New>
     </Arg>
 </New>
</Configure>

堆栈跟踪可以在这里找到。

任何建议将不胜感激。

4

1 回答 1

0

我最好的猜测是它是 Jetty 插件中的一个错误。一般来说,Jetty 插件非常有限且过时,我建议尝试使用arquillian-gradle-plugin。这就是 Gradle 的容器支持的发展方向。

于 2013-08-05T11:20:46.617 回答