source: EDIS/trunk/java/tracking-server-main/pom.xml@ 1252

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

removed cruft related to KAAJEE, stubbed in spring-security/VistALink authentication implementation

File size: 8.5 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"
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-server-main</artifactId>
13 <packaging>war</packaging>
14 <name>EDIS Tracking Server Application</name>
15 <version>1.0.1.WorldVistA-SNAPSHOT</version>
16 <description>Emergency Department Integration Software - Tracking Server Application</description>
17 <dependencies>
18 <dependency>
19 <groupId>gov.va.med.edp</groupId>
20 <artifactId>edis-tracking-ui-main</artifactId>
21 <version>${project.version}</version>
22 <type>swf</type>
23 <scope>runtime</scope>
24 </dependency>
25 <dependency>
26 <groupId>gov.va.med.edp</groupId>
27 <artifactId>edis-tracking-ui-bigboard</artifactId>
28 <version>${project.version}</version>
29 <type>swf</type>
30 <scope>runtime</scope>
31 </dependency>
32 <dependency>
33 <groupId>gov.va.med.edp</groupId>
34 <artifactId>edis-tracking-server-core</artifactId>
35 <version>${project.version}</version>
36 </dependency>
37 <dependency>
38 <groupId>ch.qos.logback</groupId>
39 <artifactId>logback-classic</artifactId>
40 <version>0.9.29</version>
41 <scope>runtime</scope>
42 </dependency>
43 <dependency>
44 <groupId>javax.resource</groupId>
45 <artifactId>connector</artifactId>
46 <version>1.0</version>
47 </dependency>
48 <dependency>
49 <groupId>javax.servlet</groupId>
50 <artifactId>servlet-api</artifactId>
51 <version>${servlet.version}</version>
52 <scope>provided</scope>
53 </dependency>
54 <dependency>
55 <groupId>javax.servlet</groupId>
56 <artifactId>jstl</artifactId>
57 <version>1.0.6</version>
58 </dependency>
59 <dependency>
60 <groupId>taglibs</groupId>
61 <artifactId>standard</artifactId>
62 <version>1.0.6</version>
63 </dependency>
64 <dependency>
65 <groupId>junit</groupId>
66 <artifactId>junit</artifactId>
67 <version>3.8.1</version>
68 <scope>test</scope>
69 </dependency>
70 </dependencies>
71 <build>
72 <finalName>${edis.tracking.trackingContextRoot}</finalName>
73 <resources>
74 <resource>
75 <directory>src/main/resources</directory>
76 <filtering>true</filtering>
77 </resource>
78 </resources>
79 <plugins>
80 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-war-plugin</artifactId>
83 <version>2.1.1</version>
84 <configuration>
85 <webResources>
86 <resource>
87 <directory>${edis.tracking.build.swf.directory}</directory>
88 <targetPath>/</targetPath>
89 <filtering>false</filtering>
90 <includes>
91 <include>*.swf</include>
92 </includes>
93 </resource>
94 </webResources>
95 </configuration>
96 </plugin>
97 <plugin>
98 <artifactId>maven-antrun-plugin</artifactId>
99 <version>1.2</version>
100 <executions>
101 <execution>
102 <phase>process-resources</phase>
103 <configuration>
104 <tasks>
105 <tstamp>
106 <format property="timestamp" pattern="yyyy/MM/dd HH:mm:ss z"/>
107 </tstamp>
108 <replaceregexp byline="true">
109 <regexp pattern="app.buildtime=BUILD_TIME_PLACEHOLDER"/>
110 <substitution expression="app.buildtime=${timestamp}"/>
111 <fileset dir="target" includes="**/*.properties"/>
112 </replaceregexp>
113 </tasks>
114 </configuration>
115 <goals>
116 <goal>run</goal>
117 </goals>
118 </execution>
119 </executions>
120 <dependencies>
121 <dependency>
122 <groupId>ant</groupId>
123 <artifactId>ant-nodeps</artifactId>
124 <version>1.6.5</version>
125 </dependency>
126 </dependencies>
127 </plugin>
128 <plugin>
129 <groupId>org.apache.maven.plugins</groupId>
130 <artifactId>maven-dependency-plugin</artifactId>
131 <version>2.0</version>
132 <executions>
133 <execution>
134 <id>include-latest-client-version</id>
135 <phase>generate-resources</phase>
136 <goals>
137 <goal>copy-dependencies</goal>
138 </goals>
139 <configuration>
140 <includeTypes>swf</includeTypes>
141 <outputDirectory>${edis.tracking.build.swf.directory}</outputDirectory>
142 <overWriteSnapshots>true</overWriteSnapshots>
143 <excludeTransitive>true</excludeTransitive>
144 </configuration>
145 </execution>
146 <!-- <execution>
147 <id>include-backwards-compatible-client-versions</id>
148 <phase>generate-resources</phase>
149 <goals>
150 <goal>copy</goal>
151 </goals>
152 <configuration>
153 <artifactItems>
154 <artifactItem>
155 <groupId>${project.groupId}</groupId>
156 <artifactId>edis-tracking-ui-main</artifactId>
157 <version>1.0-T28</version>
158 <type>swf</type>
159 </artifactItem>
160 </artifactItems>
161 <outputDirectory>${edis.tracking.build.swf.directory}</outputDirectory>
162 <overWriteSnapshots>true</overWriteSnapshots>
163 </configuration>
164 </execution> -->
165 </executions>
166 </plugin>
167 <plugin>
168 <groupId>org.mortbay.jetty</groupId>
169 <artifactId>jetty-maven-plugin</artifactId>
170 <version>8.0.1.v20110908</version>
171 <configuration>
172 <scanIntervalSeconds>4</scanIntervalSeconds>
173 <systemProperties>
174 <systemProperty>
175 <name>logback.configurationFile</name>
176 <value>${basedir}/jetty/logback.xml</value>
177 </systemProperty>
178 </systemProperties>
179 <webAppConfig>
180 <contextPath>${edis.tracking.trackingContextRoot}</contextPath>
181 </webAppConfig>
182 </configuration>
183 </plugin>
184 </plugins>
185 </build>
186 <properties>
187 <edis.tracking.build.swf.directory>${project.build.directory}/swf</edis.tracking.build.swf.directory>
188 </properties>
189</project>
Note: See TracBrowser for help on using the repository browser.