我正在使用ejb3並使用arqullian進行測試。 我在pom.xml中如何在運行測試用例時排除Maven依賴關係
<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>
我需要排除前兩個依賴,而我運行測試用例以下的依賴,但它會比測試時可用的其他。
這怎麼能實現呢?
任何幫助,非常感謝。