| Summary: | ArchiveExportException warning in the arquillian tests output | ||
|---|---|---|---|
| Product: | [JBoss] JBoss Fuse Service Works 6 | Reporter: | Tomohisa Igarashi <toigaras> |
| Component: | SwitchYard | Assignee: | Tomohisa Igarashi <toigaras> |
| Status: | MODIFIED --- | QA Contact: | Matej Melko <mmelko> |
| Severity: | high | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 6.0.0 | CC: | atangrin, ldimaggi, rcernich, soa-p-jira |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: |
If you run the functional test for one of JCA quickstarts or transaction-policy, you will encounter an ArchiveExportException. This is caused by the version of ShrinkWrap supplied with the Red Hat JBoss Enterprise Application Platform. To work around this issue, add the following code to the quick start's POM file:
<programlisting> <![CDATA[
<dependency>
<groupId>org.jboss.shrinkwrap</groupId>
<artifactId>shrinkwrap-api</artifactId>
<scope>test</scope>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap</groupId>
<artifactId>shrinkwrap-impl-base</artifactId>
<scope>test</scope>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap</groupId>
<artifactId>shrinkwrap-spi</artifactId>
<scope>test</scope>
<version>1.2.0</version>
</dependency>
]]></programlisting>
|
Story Points: | --- |
| Clone Of: | Environment: | ||
| Last Closed: | Type: | Bug | |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
|
Description
Tomohisa Igarashi
2013-11-04 15:48:53 UTC
Tomohisa igarashi <tm.igarashi> made a comment on jira SWITCHYARD-1806 This stack trace is caused by the slight older ShrinkWrap which is derived from EAP BOM. Once I added following into quickstart pom, then the stack trace has gone. {code:xml} <dependency> <groupId>org.jboss.shrinkwrap</groupId> <artifactId>shrinkwrap-api</artifactId> <scope>test</scope> <version>1.2.0</version> </dependency> <dependency> <groupId>org.jboss.shrinkwrap</groupId> <artifactId>shrinkwrap-impl-base</artifactId> <scope>test</scope> <version>1.2.0</version> </dependency> <dependency> <groupId>org.jboss.shrinkwrap</groupId> <artifactId>shrinkwrap-spi</artifactId> <scope>test</scope> <version>1.2.0</version> </dependency> {code} Hey Tomo, could you please verify whether or not this is still a problem in FSW 6.1? If not, please mark as modifed. Thanks in advance. Tested it on current upstream master and I didn't see this exception. Tomohisa igarashi <tm.igarashi> updated the status of jira SWITCHYARD-1806 to Closed |