aslak

Arquillian XML

Sep 30th, 2010
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.97 KB | None | 0 0
  1. <arquillian>
  2.  
  3.     <!--
  4.     Containers defined outside a group auto belong to a 'default' group with only them selves as member, where qualifier is used as trigger. with a optional default attribute stating this is the default if nothing else is specified. this to keep some of the easy setup we have today. qualifiers have to be unique between containers on root
  5.     -->
  6.     <jboss:container qualifier="A" default="true">
  7.         <http:protocol port="8080"/>
  8.     <jboss:container>
  9.     <glassfish:container qualifier="B" />
  10.  
  11.     <!--
  12.         a group defines access to multiple containers in one run. used for cluster/server communication.
  13.         (A qualifer should be unique within a group, or open for targeting multiple containers in one deploy call? )
  14.     -->
  15.     <group name="test">
  16.         <jboss:container qualifer="front" />
  17.         <jboss:container qualifer="back" />
  18.     </group>
  19.  
  20.     <group name="stage">
  21.         <glassfish:container qualifer="front" />
  22.         <glassfish:container qualifer="back" />
  23.     </group>
  24.  
  25.  
  26. </arquillian>
Advertisement
Add Comment
Please, Sign In to add comment