1 | <?xml version="1.0" encoding="UTF-8"?>
|
---|
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/xsd/maven-4.0.0.xsd">
|
---|
4 | <modelVersion>4.0.0</modelVersion>
|
---|
5 | <groupId>gov.va.med.edp</groupId>
|
---|
6 | <artifactId>edis-tracking-parent</artifactId>
|
---|
7 | <version>1.0.1.WorldVistA-SNAPSHOT</version>
|
---|
8 | <packaging>pom</packaging>
|
---|
9 | <name>EDIS Tracking Application</name>
|
---|
10 | <description>Emergency Department Integration Software - Tracking Application</description>
|
---|
11 | <modules>
|
---|
12 | <module>../tracking-ui-core</module>
|
---|
13 | <module>../tracking-ui-main</module>
|
---|
14 | <module>../tracking-ui-bigboard</module>
|
---|
15 | <module>../tracking-server-vista</module>
|
---|
16 | <module>../tracking-server-core</module>
|
---|
17 | <module>../tracking-server-main</module>
|
---|
18 | <module>../tracking-server-bigboard</module>
|
---|
19 | <module>../tracking-help</module>
|
---|
20 | <module>../tracking-ear</module>
|
---|
21 | </modules>
|
---|
22 | <organization>
|
---|
23 | <name>WorldVistA</name>
|
---|
24 | <url>http://www.worldvista.org/</url>
|
---|
25 | </organization>
|
---|
26 | <prerequisites>
|
---|
27 | <maven>3.0.3</maven>
|
---|
28 | </prerequisites>
|
---|
29 | <licenses>
|
---|
30 | <license>
|
---|
31 | <name>GNU General Public License (GPL) Version 2</name>
|
---|
32 | <url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</url>
|
---|
33 | </license>
|
---|
34 | </licenses>
|
---|
35 | <scm>
|
---|
36 | <connection>https://trac.opensourcevista.net/svn/EDIS/trunk/java/tracking-parent</connection>
|
---|
37 | </scm>
|
---|
38 | <issueManagement>
|
---|
39 | <system>Trac</system>
|
---|
40 | <url>https://trac.opensourcevista.net/</url>
|
---|
41 | </issueManagement>
|
---|
42 | <repositories>
|
---|
43 | <repository>
|
---|
44 | <id>central</id>
|
---|
45 | <url>http://repo1.maven.org/maven2</url>
|
---|
46 | </repository>
|
---|
47 | <repository>
|
---|
48 | <id>maven2-repository.dev.java.net</id>
|
---|
49 | <name>Java.net Repository for Maven</name>
|
---|
50 | <url>http://download.java.net/maven/2/</url>
|
---|
51 | <layout>default</layout>
|
---|
52 | </repository>
|
---|
53 | <repository>
|
---|
54 | <id>Codehaus Snapshots</id>
|
---|
55 | <url>http://snapshots.repository.codehaus.org/</url>
|
---|
56 | <snapshots>
|
---|
57 | <enabled>true</enabled>
|
---|
58 | </snapshots>
|
---|
59 | <releases>
|
---|
60 | <enabled>false</enabled>
|
---|
61 | </releases>
|
---|
62 | </repository>
|
---|
63 | <repository>
|
---|
64 | <id>flex-mojos-repository</id>
|
---|
65 | <url>http://repository.sonatype.org/content/groups/flexgroup/</url>
|
---|
66 | <releases>
|
---|
67 | <enabled>true</enabled>
|
---|
68 | </releases>
|
---|
69 | <snapshots>
|
---|
70 | <enabled>false</enabled>
|
---|
71 | </snapshots>
|
---|
72 | </repository>
|
---|
73 | <repository>
|
---|
74 | <id>edis-tracking-maven-repository</id>
|
---|
75 | <url>file://${basedir}/../tracking-maven-repository</url>
|
---|
76 | <releases>
|
---|
77 | <enabled>true</enabled>
|
---|
78 | <updatePolicy>never</updatePolicy>
|
---|
79 | </releases>
|
---|
80 | <snapshots>
|
---|
81 | <enabled>false</enabled>
|
---|
82 | </snapshots>
|
---|
83 | </repository>
|
---|
84 | </repositories>
|
---|
85 | <pluginRepositories>
|
---|
86 | <pluginRepository>
|
---|
87 | <id>Codehaus Snapshots</id>
|
---|
88 | <url>http://snapshots.repository.codehaus.org/</url>
|
---|
89 | <snapshots>
|
---|
90 | <enabled>true</enabled>
|
---|
91 | </snapshots>
|
---|
92 | <releases>
|
---|
93 | <enabled>false</enabled>
|
---|
94 | </releases>
|
---|
95 | </pluginRepository>
|
---|
96 | <pluginRepository>
|
---|
97 | <id>flex-mojos-repository</id>
|
---|
98 | <url>http://repository.sonatype.org/content/groups/flexgroup/</url>
|
---|
99 | <releases>
|
---|
100 | <enabled>true</enabled>
|
---|
101 | </releases>
|
---|
102 | <snapshots>
|
---|
103 | <enabled>false</enabled>
|
---|
104 | </snapshots>
|
---|
105 | </pluginRepository>
|
---|
106 | </pluginRepositories>
|
---|
107 | <build>
|
---|
108 | <pluginManagement>
|
---|
109 | <plugins>
|
---|
110 | <plugin>
|
---|
111 | <artifactId>maven-compiler-plugin</artifactId>
|
---|
112 | <configuration>
|
---|
113 | <source>1.4</source>
|
---|
114 | <target>1.4</target>
|
---|
115 | </configuration>
|
---|
116 | </plugin>
|
---|
117 | <plugin>
|
---|
118 | <artifactId>maven-eclipse-plugin</artifactId>
|
---|
119 | <configuration>
|
---|
120 | <downloadSources>true</downloadSources>
|
---|
121 | <downloadJavadocs>true</downloadJavadocs>
|
---|
122 | </configuration>
|
---|
123 | </plugin>
|
---|
124 | <plugin>
|
---|
125 | <artifactId>maven-idea-plugin</artifactId>
|
---|
126 | <configuration>
|
---|
127 | <downloadSources>true</downloadSources>
|
---|
128 | <downloadJavadocs>true</downloadJavadocs>
|
---|
129 | <dependenciesAsLibraries>true</dependenciesAsLibraries>
|
---|
130 | <useFullNames>false</useFullNames>
|
---|
131 | </configuration>
|
---|
132 | </plugin>
|
---|
133 | <plugin>
|
---|
134 | <groupId>org.sonatype.flexmojos</groupId>
|
---|
135 | <artifactId>flexmojos-maven-plugin</artifactId>
|
---|
136 | <version>${flex.mojos.version}</version>
|
---|
137 | <extensions>true</extensions>
|
---|
138 | <configuration>
|
---|
139 | <configurationReport>true</configurationReport>
|
---|
140 | <targetPlayer>${flex.player.version}</targetPlayer>
|
---|
141 | <!--<compatibilityVersion>3.0.0</compatibilityVersion>-->
|
---|
142 | <accessible>${flex.compiler.accessible}</accessible>
|
---|
143 | <headlessServer>${flex.compiler.headless-server}</headlessServer>
|
---|
144 | <compiledLocales>
|
---|
145 | <locale>en_US</locale>
|
---|
146 | </compiledLocales>
|
---|
147 | <keepAs3Metadatas>
|
---|
148 | <param>Bindable</param>
|
---|
149 | <param>Event</param>
|
---|
150 | <param>Managed</param>
|
---|
151 | <param>ChangeEvent</param>
|
---|
152 | <param>NonCommittingChangeEvent</param>
|
---|
153 | <param>Transient</param>
|
---|
154 | <param>Inject</param>
|
---|
155 | <param>Autowire</param>
|
---|
156 | <param>Mediate</param>
|
---|
157 | <param>Dispatcher</param>
|
---|
158 | <param>PostConstruct</param>
|
---|
159 | <param>PreDestroy</param>
|
---|
160 | </keepAs3Metadatas>
|
---|
161 | <fonts>
|
---|
162 | <managers>
|
---|
163 | <manager-class>flash.fonts.AFEFontManager</manager-class>
|
---|
164 | <manager-class>flash.fonts.JREFontManager</manager-class>
|
---|
165 | <manager-class>flash.fonts.BatikFontManager</manager-class>
|
---|
166 | </managers>
|
---|
167 | </fonts>
|
---|
168 | <debug>${flex.compiler.debug}</debug>
|
---|
169 | <skipTests>${java.awt.headless}</skipTests>
|
---|
170 | <warnings>
|
---|
171 | <!-- default to same warnings disabled as in SDK -->
|
---|
172 | <!-- Array.toString() format has changed. -->
|
---|
173 | <arrayTostringChanges>false</arrayTostringChanges>
|
---|
174 | <!-- Boolean() with no arguments returns false in ActionScript 3.0. Boolean() returned undefined in ActionScript 2.0. -->
|
---|
175 | <booleanConstructorWithNoArgs>false</booleanConstructorWithNoArgs>
|
---|
176 | <!-- __resolve is no longer supported. -->
|
---|
177 | <changesInResolve>false</changesInResolve>
|
---|
178 | <!-- Class is sealed. It cannot have members added to it dynamically. -->
|
---|
179 | <!-- Function used in new expression returns a value. Result will be what the -->
|
---|
180 | <!-- function returns, rather than a new instance of that function. -->
|
---|
181 | <constructorReturnsValue>false</constructorReturnsValue>
|
---|
182 | <!-- EventHandler was not added as a listener. -->
|
---|
183 | <deprecatedEventHandlerError>false</deprecatedEventHandlerError>
|
---|
184 | <!-- ActionScript 3.0 iterates over an object's properties within a "for x in target" statement in random order. -->
|
---|
185 | <forVarInChanges>false</forVarInChanges>
|
---|
186 | <!-- Missing constructor. -->
|
---|
187 | <noConstructor>false</noConstructor>
|
---|
188 | <!-- The super() statement was not called within the constructor. -->
|
---|
189 | <noExplicitSuperCallInConstructor>false</noExplicitSuperCallInConstructor>
|
---|
190 | <!-- In ActionScript 3.0, white space is ignored and '' returns 0. Number() returns -->
|
---|
191 | <!-- NaN in ActionScript 2.0 when the parameter is '' or contains white space. -->
|
---|
192 | <numberFromStringChanges>false</numberFromStringChanges>
|
---|
193 | <!-- Change in scoping for the this keyword. Class methods extracted from an -->
|
---|
194 | <!-- instance of a class will always resolve this back to that instance. In -->
|
---|
195 | <!-- ActionScript 2.0 this is looked up dynamically based on where the method -->
|
---|
196 | <!-- is invoked from. -->
|
---|
197 | <scopingChangeInThis>false</scopingChangeInThis>
|
---|
198 | <!-- Possible usage of the ActionScript 2.0 XML class. -->
|
---|
199 | <xmlClassHasChanged>false</xmlClassHasChanged>
|
---|
200 | </warnings>
|
---|
201 | </configuration>
|
---|
202 | <dependencies>
|
---|
203 | <dependency>
|
---|
204 | <groupId>com.adobe.flex</groupId>
|
---|
205 | <artifactId>compiler</artifactId>
|
---|
206 | <version>${flex.version}</version>
|
---|
207 | <type>pom</type>
|
---|
208 | </dependency>
|
---|
209 | <!-- <dependency>
|
---|
210 | <groupId>com.adobe.flex.compiler</groupId>
|
---|
211 | <artifactId>flex-fontkit</artifactId>
|
---|
212 | <version>${flex.version}</version>
|
---|
213 | </dependency> -->
|
---|
214 | <!--<dependency>-->
|
---|
215 | <!--<groupId>com.adobe.flex.compiler</groupId>-->
|
---|
216 | <!--<artifactId>asdoc</artifactId>-->
|
---|
217 | <!--<version>${flex.version}</version>-->
|
---|
218 | <!--<classifier>template</classifier>-->
|
---|
219 | <!--<type>zip</type>-->
|
---|
220 | <!--</dependency>-->
|
---|
221 | </dependencies>
|
---|
222 | </plugin>
|
---|
223 | </plugins>
|
---|
224 | </pluginManagement>
|
---|
225 | </build>
|
---|
226 | <reporting>
|
---|
227 | <plugins>
|
---|
228 | <plugin>
|
---|
229 | <groupId>org.apache.maven.plugins</groupId>
|
---|
230 | <artifactId>maven-project-info-reports-plugin</artifactId>
|
---|
231 | <version>2.4</version>
|
---|
232 | <reportSets>
|
---|
233 | <reportSet>
|
---|
234 | <reports>
|
---|
235 | <report>index</report>
|
---|
236 | <report>summary</report>
|
---|
237 | <report>dependency-convergence</report>
|
---|
238 | <report>project-team</report>
|
---|
239 | <report>cim</report>
|
---|
240 | <report>scm</report>
|
---|
241 | <report>license</report>
|
---|
242 | </reports>
|
---|
243 | </reportSet>
|
---|
244 | </reportSets>
|
---|
245 | </plugin>
|
---|
246 | <plugin>
|
---|
247 | <artifactId>maven-changes-plugin</artifactId>
|
---|
248 | <version>2.6</version>
|
---|
249 | </plugin>
|
---|
250 | <plugin>
|
---|
251 | <artifactId>maven-checkstyle-plugin</artifactId>
|
---|
252 | <version>2.7</version>
|
---|
253 | </plugin>
|
---|
254 | <plugin>
|
---|
255 | <groupId>org.codehaus.mojo</groupId>
|
---|
256 | <artifactId>cobertura-maven-plugin</artifactId>
|
---|
257 | <version>2.5.1</version>
|
---|
258 | </plugin>
|
---|
259 | <plugin>
|
---|
260 | <artifactId>maven-javadoc-plugin</artifactId>
|
---|
261 | <version>2.8</version>
|
---|
262 | </plugin>
|
---|
263 | <plugin>
|
---|
264 | <artifactId>maven-jxr-plugin</artifactId>
|
---|
265 | <version>2.2</version>
|
---|
266 | </plugin>
|
---|
267 | <plugin>
|
---|
268 | <artifactId>maven-pmd-plugin</artifactId>
|
---|
269 | <version>2.5</version>
|
---|
270 | </plugin>
|
---|
271 | <plugin>
|
---|
272 | <artifactId>maven-surefire-report-plugin</artifactId>
|
---|
273 | <version>2.9</version>
|
---|
274 | </plugin>
|
---|
275 | </plugins>
|
---|
276 | </reporting>
|
---|
277 | <properties>
|
---|
278 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
---|
279 |
|
---|
280 | <!-- versions of dependencies -->
|
---|
281 | <servlet.version>2.3</servlet.version>
|
---|
282 | <spring.version>2.0.8</spring.version>
|
---|
283 | <spring.security.version>2.0.7.RELEASE</spring.security.version>
|
---|
284 | <slf4j.version>1.6.2</slf4j.version>
|
---|
285 | <log4j.version>1.2.14</log4j.version>
|
---|
286 | <easymock.version>2.4</easymock.version>
|
---|
287 |
|
---|
288 | <flex.version>3.6.0.16995</flex.version>
|
---|
289 | <flex.player.version>10.0</flex.player.version>
|
---|
290 | <flexunit.version>0.85</flexunit.version>
|
---|
291 | <cairngorm.version>2.2.1</cairngorm.version>
|
---|
292 |
|
---|
293 | <!-- flex compiler settings -->
|
---|
294 | <flex.mojos.version>3.8</flex.mojos.version>
|
---|
295 | <flex.compiler.accessible>true</flex.compiler.accessible>
|
---|
296 | <flex.compiler.headless-server>true</flex.compiler.headless-server>
|
---|
297 | <flex.compiler.debug>true</flex.compiler.debug>
|
---|
298 | <!--<skipTests>${java.awt.headless}</skipTests>-->
|
---|
299 |
|
---|
300 | <!-- EDIS project settings -->
|
---|
301 | <edis.tracking.trackingContextRoot>/main</edis.tracking.trackingContextRoot>
|
---|
302 | <edis.tracking.boardContextRoot>/bigboard</edis.tracking.boardContextRoot>
|
---|
303 | <edis.tracking.helpContextRoot>/help</edis.tracking.helpContextRoot>
|
---|
304 | </properties>
|
---|
305 | <profiles>
|
---|
306 | <profile>
|
---|
307 | <id>dev</id>
|
---|
308 | <properties>
|
---|
309 | <flex.compiler.debug>true</flex.compiler.debug>
|
---|
310 | </properties>
|
---|
311 | </profile>
|
---|
312 | </profiles>
|
---|
313 | </project>
|
---|