[1227] | 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>
|
---|
[1235] | 8 | <version>1.0.1.WorldVistA-SNAPSHOT</version>
|
---|
[1227] | 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>
|
---|
[1235] | 15 | <version>1.0.1.WorldVistA-SNAPSHOT</version>
|
---|
[1227] | 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>javax.servlet</groupId>
|
---|
| 39 | <artifactId>jstl</artifactId>
|
---|
| 40 | <version>1.0.6</version>
|
---|
| 41 | </dependency>
|
---|
| 42 | <dependency>
|
---|
| 43 | <groupId>taglibs</groupId>
|
---|
| 44 | <artifactId>standard</artifactId>
|
---|
| 45 | <version>1.0.6</version>
|
---|
| 46 | </dependency>
|
---|
| 47 | <dependency>
|
---|
| 48 | <groupId>junit</groupId>
|
---|
| 49 | <artifactId>junit</artifactId>
|
---|
| 50 | <version>3.8.1</version>
|
---|
| 51 | <scope>test</scope>
|
---|
| 52 | </dependency>
|
---|
| 53 | </dependencies>
|
---|
| 54 | <build>
|
---|
| 55 | <finalName>${edis.tracking.trackingContextRoot}</finalName>
|
---|
| 56 | <resources>
|
---|
| 57 | <resource>
|
---|
| 58 | <directory>src/main/resources</directory>
|
---|
| 59 | <filtering>true</filtering>
|
---|
| 60 | </resource>
|
---|
| 61 | </resources>
|
---|
| 62 | <plugins>
|
---|
| 63 | <plugin>
|
---|
| 64 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 65 | <artifactId>maven-war-plugin</artifactId>
|
---|
| 66 | <configuration>
|
---|
| 67 | <webResources>
|
---|
| 68 | <resource>
|
---|
| 69 | <directory>src/main/webapp/WEB-INF</directory>
|
---|
| 70 | <includes>
|
---|
| 71 | <include>kaajeeConfig.xml</include>
|
---|
| 72 | <include>weblogic.xml</include>
|
---|
| 73 | </includes>
|
---|
| 74 | <filtering>true</filtering>
|
---|
| 75 | <targetPath>WEB-INF</targetPath>
|
---|
| 76 | </resource>
|
---|
| 77 | <resource>
|
---|
| 78 | <directory>${edis.tracking.build.swf.directory}</directory>
|
---|
| 79 | <targetPath>/</targetPath>
|
---|
| 80 | <filtering>false</filtering>
|
---|
| 81 | <includes>
|
---|
| 82 | <include>*.swf</include>
|
---|
| 83 | </includes>
|
---|
| 84 | </resource>
|
---|
| 85 | </webResources>
|
---|
| 86 | </configuration>
|
---|
| 87 | </plugin>
|
---|
| 88 | <plugin>
|
---|
| 89 | <artifactId>maven-antrun-plugin</artifactId>
|
---|
| 90 | <executions>
|
---|
| 91 | <execution>
|
---|
| 92 | <phase>process-resources</phase>
|
---|
| 93 | <configuration>
|
---|
| 94 | <tasks>
|
---|
| 95 | <tstamp>
|
---|
| 96 | <format property="timestamp" pattern="yyyy/MM/dd HH:mm:ss z"/>
|
---|
| 97 | </tstamp>
|
---|
| 98 | <replaceregexp byline="true">
|
---|
| 99 | <regexp pattern="app.buildtime=BUILD_TIME_PLACEHOLDER"/>
|
---|
| 100 | <substitution expression="app.buildtime=${timestamp}"/>
|
---|
| 101 | <fileset dir="target" includes="**/*.properties"/>
|
---|
| 102 | </replaceregexp>
|
---|
| 103 | </tasks>
|
---|
| 104 | </configuration>
|
---|
| 105 | <goals>
|
---|
| 106 | <goal>run</goal>
|
---|
| 107 | </goals>
|
---|
| 108 | </execution>
|
---|
| 109 | </executions>
|
---|
| 110 | <dependencies>
|
---|
| 111 | <dependency>
|
---|
| 112 | <groupId>ant</groupId>
|
---|
| 113 | <artifactId>ant-nodeps</artifactId>
|
---|
| 114 | <version>1.6.5</version>
|
---|
| 115 | </dependency>
|
---|
| 116 | </dependencies>
|
---|
| 117 | </plugin>
|
---|
| 118 | <plugin>
|
---|
| 119 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 120 | <artifactId>maven-dependency-plugin</artifactId>
|
---|
| 121 | <version>2.0</version>
|
---|
| 122 | <executions>
|
---|
| 123 | <execution>
|
---|
| 124 | <id>include-latest-client-version</id>
|
---|
| 125 | <phase>generate-resources</phase>
|
---|
| 126 | <goals>
|
---|
| 127 | <goal>copy-dependencies</goal>
|
---|
| 128 | </goals>
|
---|
| 129 | <configuration>
|
---|
| 130 | <includeTypes>swf</includeTypes>
|
---|
| 131 | <outputDirectory>${edis.tracking.build.swf.directory}</outputDirectory>
|
---|
| 132 | <overWriteSnapshots>true</overWriteSnapshots>
|
---|
| 133 | <excludeTransitive>true</excludeTransitive>
|
---|
| 134 | </configuration>
|
---|
| 135 | </execution>
|
---|
[1235] | 136 | <!-- <execution>
|
---|
| 137 | <id>include-backwards-compatible-client-versions</id>
|
---|
| 138 | <phase>generate-resources</phase>
|
---|
| 139 | <goals>
|
---|
| 140 | <goal>copy</goal>
|
---|
| 141 | </goals>
|
---|
| 142 | <configuration>
|
---|
| 143 | <artifactItems>
|
---|
| 144 | <artifactItem>
|
---|
| 145 | <groupId>${project.groupId}</groupId>
|
---|
| 146 | <artifactId>edis-tracking-ui-main</artifactId>
|
---|
| 147 | <version>1.0-T28</version>
|
---|
| 148 | <type>swf</type>
|
---|
| 149 | </artifactItem>
|
---|
| 150 | </artifactItems>
|
---|
| 151 | <outputDirectory>${edis.tracking.build.swf.directory}</outputDirectory>
|
---|
| 152 | <overWriteSnapshots>true</overWriteSnapshots>
|
---|
| 153 | </configuration>
|
---|
| 154 | </execution> -->
|
---|
[1227] | 155 | </executions>
|
---|
| 156 | </plugin>
|
---|
| 157 | </plugins>
|
---|
| 158 | </build>
|
---|
| 159 | <profiles>
|
---|
| 160 | <profile>
|
---|
| 161 | <id>dev</id>
|
---|
| 162 | <build>
|
---|
| 163 | <plugins>
|
---|
| 164 | <plugin>
|
---|
| 165 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 166 | <artifactId>maven-war-plugin</artifactId>
|
---|
| 167 | <configuration>
|
---|
| 168 | <webResources>
|
---|
| 169 | <resource>
|
---|
| 170 | <directory>src/main/webapp-dev/WEB-INF</directory>
|
---|
| 171 | <includes>
|
---|
| 172 | <include>kaajeeConfig.xml</include>
|
---|
| 173 | </includes>
|
---|
| 174 | <targetPath>WEB-INF</targetPath>
|
---|
| 175 | </resource>
|
---|
| 176 | <resource>
|
---|
| 177 | <directory>src/main/webapp/WEB-INF</directory>
|
---|
| 178 | <includes>
|
---|
| 179 | <include>weblogic.xml</include>
|
---|
| 180 | </includes>
|
---|
| 181 | <excludes>
|
---|
| 182 | <exclude>kaajeeConfig.xml</exclude>
|
---|
| 183 | </excludes>
|
---|
| 184 | <filtering>true</filtering>
|
---|
| 185 | <targetPath>WEB-INF</targetPath>
|
---|
| 186 | </resource>
|
---|
| 187 | <resource>
|
---|
| 188 | <directory>${edis.tracking.build.swf.directory}</directory>
|
---|
| 189 | <targetPath>/</targetPath>
|
---|
| 190 | <filtering>false</filtering>
|
---|
| 191 | <includes>
|
---|
| 192 | <include>*.swf</include>
|
---|
| 193 | </includes>
|
---|
| 194 | </resource>
|
---|
| 195 | </webResources>
|
---|
| 196 | </configuration>
|
---|
| 197 | </plugin>
|
---|
| 198 | </plugins>
|
---|
| 199 | </build>
|
---|
| 200 | </profile>
|
---|
| 201 | </profiles>
|
---|
| 202 | <properties>
|
---|
| 203 | <edis.tracking.build.swf.directory>${project.build.directory}/swf</edis.tracking.build.swf.directory>
|
---|
| 204 | </properties>
|
---|
| 205 | </project>
|
---|