ShrinkWrap is the supported deployment mechanism of the Arquillian project.
Questions tagged [shrinkwrap]
105 questions
13
votes
1 answer
JBoss ShrinkWrap. Adding file from other module.
Multi module project.
In my ejb module I have the highlighted files. I would like to use the same files running a arquillian test in the web module.
In the pom.xml file in web module I have a dependency to the ejb module, but with scope provided…

klind
- 855
- 2
- 21
- 33
12
votes
0 answers
NPM - How do I override one of my dependencies dependency?
Recently, npm released the npm audit command. It runs automatically when you npm i letting you know of any vulnerabilities. I have a simple dependency tree, something like this:
package A
package B
package B dependency
package C
My package.json…

The Qodesmith
- 3,205
- 4
- 32
- 45
11
votes
2 answers
Arquillian: Create a WebArchive from an existing war using ShrinkWrap
I am trying to deploy an existing war from another maven project in Arquillian.
I have resolved the war and have it copied to the target directory of my Arquillian project.
I try to create it below:
@Deployment
public static WebArchive…

cbeaudin
- 667
- 7
- 19
8
votes
1 answer
How do I setup arquillian to test a maven war project by deploying the entire war to WildFly embedded?
I 'd like to do macro (not micro!) black box testing of my war on an embedded WildFly instance.
My maven project looks like this
...
war