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-server-bigboard</artifactId>
|
---|
12 | <packaging>war</packaging>
|
---|
13 | <name>EDIS Tracking Server Big Board</name>
|
---|
14 | <version>1.0.1.WorldVistA-SNAPSHOT</version>
|
---|
15 | <description>Emergency Department Integration Software - Tracking Server Big Board</description>
|
---|
16 | <dependencies>
|
---|
17 | <dependency>
|
---|
18 | <groupId>gov.va.med.edp</groupId>
|
---|
19 | <artifactId>edis-tracking-ui-bigboard</artifactId>
|
---|
20 | <version>${project.version}</version>
|
---|
21 | <type>swf</type>
|
---|
22 | <scope>runtime</scope>
|
---|
23 | </dependency>
|
---|
24 | <dependency>
|
---|
25 | <groupId>gov.va.med.edp</groupId>
|
---|
26 | <artifactId>edis-tracking-server-core</artifactId>
|
---|
27 | <version>${project.version}</version>
|
---|
28 | </dependency>
|
---|
29 | <dependency>
|
---|
30 | <groupId>javax.servlet</groupId>
|
---|
31 | <artifactId>jstl</artifactId>
|
---|
32 | <version>1.0.6</version>
|
---|
33 | </dependency>
|
---|
34 | <dependency>
|
---|
35 | <groupId>taglibs</groupId>
|
---|
36 | <artifactId>standard</artifactId>
|
---|
37 | <version>1.0.6</version>
|
---|
38 | </dependency>
|
---|
39 | <dependency>
|
---|
40 | <groupId>junit</groupId>
|
---|
41 | <artifactId>junit</artifactId>
|
---|
42 | <version>3.8.1</version>
|
---|
43 | <scope>test</scope>
|
---|
44 | </dependency>
|
---|
45 | </dependencies>
|
---|
46 | <build>
|
---|
47 | <finalName>${edis.tracking.boardContextRoot}</finalName>
|
---|
48 | <resources>
|
---|
49 | <resource>
|
---|
50 | <directory>src/main/resources</directory>
|
---|
51 | <filtering>true</filtering>
|
---|
52 | </resource>
|
---|
53 | </resources>
|
---|
54 | <plugins>
|
---|
55 | <plugin>
|
---|
56 | <groupId>org.apache.maven.plugins</groupId>
|
---|
57 | <artifactId>maven-war-plugin</artifactId>
|
---|
58 | <configuration>
|
---|
59 | <webResources>
|
---|
60 | <resource>
|
---|
61 | <directory>${edis.tracking.build.swf.directory}</directory>
|
---|
62 | <targetPath>/</targetPath>
|
---|
63 | <filtering>false</filtering>
|
---|
64 | <includes>
|
---|
65 | <include>*.swf</include>
|
---|
66 | </includes>
|
---|
67 | </resource>
|
---|
68 | </webResources>
|
---|
69 | </configuration>
|
---|
70 | </plugin>
|
---|
71 | <plugin>
|
---|
72 | <artifactId>maven-antrun-plugin</artifactId>
|
---|
73 | <executions>
|
---|
74 | <execution>
|
---|
75 | <phase>process-resources</phase>
|
---|
76 | <configuration>
|
---|
77 | <tasks>
|
---|
78 | <tstamp>
|
---|
79 | <format property="timestamp" pattern="yyyy/MM/dd HH:mm:ss z"/>
|
---|
80 | </tstamp>
|
---|
81 | <replaceregexp byline="true">
|
---|
82 | <regexp pattern="app.buildtime=BUILD_TIME_PLACEHOLDER"/>
|
---|
83 | <substitution expression="app.buildtime=${timestamp}"/>
|
---|
84 | <fileset dir="target" includes="**/*.properties"/>
|
---|
85 | </replaceregexp>
|
---|
86 | </tasks>
|
---|
87 | </configuration>
|
---|
88 | <goals>
|
---|
89 | <goal>run</goal>
|
---|
90 | </goals>
|
---|
91 | </execution>
|
---|
92 | </executions>
|
---|
93 | <dependencies>
|
---|
94 | <dependency>
|
---|
95 | <groupId>ant</groupId>
|
---|
96 | <artifactId>ant-nodeps</artifactId>
|
---|
97 | <version>1.6.5</version>
|
---|
98 | </dependency>
|
---|
99 | </dependencies>
|
---|
100 | </plugin>
|
---|
101 | <plugin>
|
---|
102 | <groupId>org.apache.maven.plugins</groupId>
|
---|
103 | <artifactId>maven-dependency-plugin</artifactId>
|
---|
104 | <version>2.0</version>
|
---|
105 | <executions>
|
---|
106 | <execution>
|
---|
107 | <id>include-latest-client-version</id>
|
---|
108 | <phase>generate-resources</phase>
|
---|
109 | <goals>
|
---|
110 | <goal>copy-dependencies</goal>
|
---|
111 | </goals>
|
---|
112 | <configuration>
|
---|
113 | <includeTypes>swf</includeTypes>
|
---|
114 | <outputDirectory>${edis.tracking.build.swf.directory}</outputDirectory>
|
---|
115 | <overWriteSnapshots>true</overWriteSnapshots>
|
---|
116 | <excludeTransitive>true</excludeTransitive>
|
---|
117 | </configuration>
|
---|
118 | </execution>
|
---|
119 | </executions>
|
---|
120 | </plugin>
|
---|
121 | </plugins>
|
---|
122 | </build>
|
---|
123 | <properties>
|
---|
124 | <edis.tracking.build.swf.directory>${project.build.directory}/swf</edis.tracking.build.swf.directory>
|
---|
125 | </properties>
|
---|
126 | </project>
|
---|