我一直在尝试按照这篇博客文章在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中添加一些内容才能使用这些类?
答案 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>