Reputation: 317
How does (JBoss) Shrinkwrap perform the deployment of a war file in the container when I use the @Deployment annotation in an Arquillian test?
Upvotes: 0
Views: 293
Reputation: 1064
As John said, it really depends on how container adapter is implemented (in particular the deployment automation bits). I case of WebSphere container adapter it's using SOAP admin client available from WAS, Glassfish stuff works through their REST api and so on.
Upvotes: 2
Reputation: 11733
This depends on your container, not all containers will do it the same way.
Upvotes: 1