我正在学习 Arquillian。我已阅读入门指南,现在尝试使用配置文件“arquillian-jbossas-managed”运行示例应用程序,但我使用 Gradle 而不是 Maven,遇到了麻烦。示例的 pom.xml 中有以下插件:
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<phase>process-test-classes</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.jboss.as</groupId>
<artifactId>jboss-as-dist</artifactId>
<version>7.1.1.Final</version>
<type>zip</type>
<overWrite>false</overWrite>
<outputDirectory>target</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
在 Gradle 的情况下如何实现相同的功能(我不想手动设置 JBOSS_HOME 或复制分发)?
PS对不起,如果这个问题看起来太愚蠢了-我是Gradle的新手。
PSS 对不起我的英语。