source: EDIS/trunk/java/tracking-ear/pom.xml@ 1249

Last change on this file since 1249 was 1249, checked in by Solomon Blaz, 13 years ago

integrated tracking-help into build, added build output ('target') directories to svn:ignore

File size: 2.4 KB
Line 
1<?xml version="1.0"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>gov.va.med.edp</groupId>
6 <artifactId>edis-tracking-parent</artifactId>
7 <version>1.0.1.WorldVistA-SNAPSHOT</version>
8 <relativePath>../tracking-parent</relativePath>
9 </parent>
10 <groupId>gov.va.med.edp</groupId>
11 <artifactId>edis-tracking-application</artifactId>
12 <packaging>ear</packaging>
13 <name>EDIS Tracking Application Bundle</name>
14 <version>1.0.1.WorldVistA-SNAPSHOT</version>
15 <description>Emergency Department Integration Software - Tracking Application Bundle</description>
16 <dependencies>
17 <dependency>
18 <groupId>gov.va.med.edp</groupId>
19 <artifactId>edis-tracking-server-main</artifactId>
20 <version>${project.version}</version>
21 <type>war</type>
22 </dependency>
23 <dependency>
24 <groupId>gov.va.med.edp</groupId>
25 <artifactId>edis-tracking-server-bigboard</artifactId>
26 <version>${project.version}</version>
27 <type>war</type>
28 </dependency>
29 <dependency>
30 <groupId>gov.va.med.edp</groupId>
31 <artifactId>edis-tracking-help</artifactId>
32 <version>${project.version}</version>
33 <type>war</type>
34 </dependency>
35 </dependencies>
36 <build>
37 <plugins>
38 <plugin>
39 <groupId>org.apache.maven.plugins</groupId>
40 <artifactId>maven-ear-plugin</artifactId>
41 <configuration>
42 <!-- <unpackTypes>war</unpackTypes> -->
43 <modules>
44 <webModule>
45 <groupId>gov.va.med.edp</groupId>
46 <artifactId>edis-tracking-server-main</artifactId>
47 <contextRoot>${edis.tracking.trackingContextRoot}</contextRoot>
48 </webModule>
49 <webModule>
50 <groupId>gov.va.med.edp</groupId>
51 <artifactId>edis-tracking-server-bigboard</artifactId>
52 <contextRoot>${edis.tracking.boardContextRoot}</contextRoot>
53 </webModule>
54 <!-- <webModule>
55 <groupId>gov.va.med.edp</groupId>
56 <artifactId>edis-tracking-help</artifactId>
57 <contextRoot>${edis.tracking.helpContextRoot}</contextRoot>
58 </webModule> -->
59 </modules>
60 </configuration>
61 </plugin>
62 </plugins>
63 </build>
64</project>
Note: See TracBrowser for help on using the repository browser.