Last change
on this file since 1252 was 1251, checked in by Solomon Blaz, 13 years ago |
stubbed out preliminary README about building EDIS java web application with maven
|
File size:
1.5 KB
|
Rev | Line | |
---|
[1251] | 1 | # Emergency Department Integration Software
|
---|
| 2 |
|
---|
| 3 | Emergency Department Integration Software (EDIS) incorporates several Web-based views that extend the current Computerized Patient Record System (CPRS) to help healthcare professionals track and manage the flow of patient care in the emergency- department setting.
|
---|
| 4 |
|
---|
| 5 | ## How to build
|
---|
| 6 |
|
---|
| 7 | This project is built using maven (currently version 3.0.3). You can download
|
---|
| 8 | and install maven from http://maven.apache.org. The whole build can be invoked
|
---|
| 9 | from the command line from the tracking-parent directory:
|
---|
| 10 |
|
---|
| 11 | $ mvn clean package
|
---|
| 12 |
|
---|
| 13 | The Flex user interface artifacts are built with the "flexmojos" maven plugin (currently version 4.0).
|
---|
| 14 | In order for maven to run the Flex unit tests you will also need Adobe's Flash Player installed and in
|
---|
| 15 | your PATH. See <https://docs.sonatype.org/display/FLEXMOJOS/Running+unit+tests> for more info. To skip
|
---|
| 16 | the unit tests, use:
|
---|
| 17 |
|
---|
| 18 | $ mvn clean package -DskipTests=true
|
---|
| 19 |
|
---|
| 20 | ## Build Artifacts
|
---|
| 21 |
|
---|
| 22 | The main web application artifact produced by the build will be at:
|
---|
| 23 |
|
---|
| 24 | tracking-server-main/target/main.war Main EDIS web application (including bigboard require user login)
|
---|
| 25 |
|
---|
| 26 | Optional artifacts include:
|
---|
| 27 |
|
---|
| 28 | tracking-server-help/target/help.war Help files
|
---|
| 29 | tracking-server-bigboard/target/bigboard.war EDIS big board designed for use with no logged in user (requires configuration)
|
---|
| 30 | tracking-server-ear/target/edis.ear main.war, help.war, bigboard.war packaged as an .ear
|
---|
| 31 |
|
---|
| 32 | Pick and choose which are appropriate depending on your deployment platform and configuration.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.