Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a757cba4c17d58f7ac73ff11d333ee89ff5411df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0"?>
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">


<!-- =============================================================== -->
<!-- Configure the test-annotations webapp                           -->
<!-- =============================================================== -->

<Configure id='wac' class="org.eclipse.jetty.webapp.WebAppContext">


  <!-- Configure the tx mgr (only needed for mvn jetty:run -->
  <New id="tx" class="org.eclipse.jetty.plus.jndi.Transaction">
      <Arg>
        <New class="com.acme.MockUserTransaction"/>
      </Arg>
    </New>



Back to the top