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