在mvn build中缺少测试助手类(例如RunAsFullyAuthenticatedRule)

时间:2014-05-26 20:31:10

标签: alfresco

我一直在尝试按照这篇博客文章在maven构建中创建一个测试 - http://blogs.aca-it.be/blogs/-/blogs/alfresco-summit-part-5-%E2%80%93-developing-json-rest-services-with-webscripts - 他们在测试中使用RunAsFullyAuthenticatedRule和ApplicationContextInit但是在标准maven构建中这些不能解决。我是否必须在pom.xml中添加一些内容才能使用这些类?

1 个答案:

答案 0 :(得分:1)

我从博客作者那里得到了答案。

"这些类曾经在4.1.4之前与alfresco-repository依赖包一起打包。添加此依赖项:"

<dependency>
      <groupId>${alfresco.groupId}</groupId>
      <artifactId>alfresco-repository</artifactId>
      <version>${alfresco.version}</version>
      <classifier>tests</classifier>
      <scope>test</scope>
</dependency>