我正在研究 ejb3 并使用 arqullian 进行测试。我在 pom.xml 中有以下依赖项
<dependency>
<groupId>org.glassfish.main.ejb</groupId>
<artifactId>javax.ejb</artifactId>
</dependency>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.junit</groupId>
<artifactId>arquillian-junit-container</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-glassfish-embedded-3.1</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.glassfish.main.extras</groupId>
<artifactId>glassfish-embedded-all</artifactId>
<version>3.1.2</version>
<scope>test</scope>
</dependency>
在运行测试用例时,我需要排除前两个依赖项,但它在测试时间之外可用。
怎样才能做到这一点?
任何帮助深表感谢。