summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/EJB 3.0 Code/Gerald Examples/src/examples/shop/META-INF/application.xml
blob: fe5919f09ec2552c997c68bfdca76dfccc835c32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>

<application version="5"
 xmlns="http://java.sun.com/xml/ns/javaee" 
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_5.xsd">

  <description>Application description</description>
  <display-name>Jasmine</display-name>
  <module>
    <web>
      <web-uri>shop.war</web-uri>
      <context-root>jasmine</context-root> 
    </web>
  </module>
  <module>
    <ejb>shopEjb.jar</ejb>
  </module>
  
</application>