source: EDIS/trunk/java/tracking-server-core/pom.xml@ 1227

Last change on this file since 1227 was 1227, checked in by George Lilly, 13 years ago

initial load of EDIS 1.0

File size: 4.8 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" 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-T29-SNAPSHOT</version>
8 <relativePath>../tracking-parent</relativePath>
9 </parent>
10 <groupId>gov.va.med.edp</groupId>
11 <artifactId>edis-tracking-server-core</artifactId>
12 <packaging>jar</packaging>
13 <name>EDIS Tracking Server Core</name>
14 <version>1.0-T29-SNAPSHOT</version>
15 <description>Emergency Department Integration Software - Tracking Application Server Core</description>
16 <dependencies>
17 <dependency>
18 <groupId>org.springframework</groupId>
19 <artifactId>spring-jca</artifactId>
20 <version>${spring.version}</version>
21 <exclusions>
22 <exclusion>
23 <groupId>log4j</groupId>
24 <artifactId>log4j</artifactId>
25 </exclusion>
26 <exclusion>
27 <groupId>logkit</groupId>
28 <artifactId>logkit</artifactId>
29 </exclusion>
30 <exclusion>
31 <groupId>avalon-framework</groupId>
32 <artifactId>avalon-framework</artifactId>
33 </exclusion>
34 <exclusion>
35 <groupId>javax.servlet</groupId>
36 <artifactId>servlet-api</artifactId>
37 </exclusion>
38 </exclusions>
39 </dependency>
40 <dependency>
41 <groupId>org.springframework</groupId>
42 <artifactId>spring-webmvc</artifactId>
43 <version>${spring.version}</version>
44 <exclusions>
45 <exclusion>
46 <groupId>log4j</groupId>
47 <artifactId>log4j</artifactId>
48 </exclusion>
49 <exclusion>
50 <groupId>logkit</groupId>
51 <artifactId>logkit</artifactId>
52 </exclusion>
53 <exclusion>
54 <groupId>avalon-framework</groupId>
55 <artifactId>avalon-framework</artifactId>
56 </exclusion>
57 <exclusion>
58 <groupId>javax.servlet</groupId>
59 <artifactId>servlet-api</artifactId>
60 </exclusion>
61 </exclusions>
62 </dependency>
63 <dependency>
64 <groupId>org.springframework</groupId>
65 <artifactId>spring-jdbc</artifactId>
66 <version>${spring.version}</version>
67 <exclusions>
68 <exclusion>
69 <groupId>log4j</groupId>
70 <artifactId>log4j</artifactId>
71 </exclusion>
72 <exclusion>
73 <groupId>logkit</groupId>
74 <artifactId>logkit</artifactId>
75 </exclusion>
76 <exclusion>
77 <groupId>avalon-framework</groupId>
78 <artifactId>avalon-framework</artifactId>
79 </exclusion>
80 <exclusion>
81 <groupId>javax.servlet</groupId>
82 <artifactId>servlet-api</artifactId>
83 </exclusion>
84 </exclusions>
85 </dependency>
86 <dependency>
87 <groupId>gov.va.med.authentication</groupId>
88 <artifactId>kaajee</artifactId>
89 <version>1.0.1.002</version>
90 <scope>provided</scope>
91 </dependency>
92 <dependency>
93 <groupId>log4j</groupId>
94 <artifactId>log4j</artifactId>
95 <version>1.2.8</version>
96 <scope>provided</scope>
97 </dependency>
98 <dependency>
99 <groupId>weblogic</groupId>
100 <artifactId>weblogic</artifactId>
101 <version>8.1</version>
102 <scope>provided</scope>
103 </dependency>
104 <dependency>
105 <groupId>gov.va.med.vistalink</groupId>
106 <artifactId>vljFoundationsLib</artifactId>
107 <version>1.5.0.026</version>
108 <scope>provided</scope>
109 </dependency>
110 <dependency>
111 <groupId>gov.va.med.vistalink</groupId>
112 <artifactId>vljConnector</artifactId>
113 <version>1.5.0.026</version>
114 <scope>provided</scope>
115 </dependency>
116 <dependency>
117 <groupId>junit</groupId>
118 <artifactId>junit</artifactId>
119 <version>3.8.1</version>
120 <scope>test</scope>
121 </dependency>
122 <dependency>
123 <groupId>easymock</groupId>
124 <artifactId>easymock</artifactId>
125 <version>1.2_Java1.3</version>
126 <scope>test</scope>
127 </dependency>
128 <dependency>
129 <groupId>org.springframework</groupId>
130 <artifactId>spring-mock</artifactId>
131 <version>${spring.version}</version>
132 <scope>test</scope>
133 <exclusions>
134 <exclusion>
135 <groupId>log4j</groupId>
136 <artifactId>log4j</artifactId>
137 </exclusion>
138 <exclusion>
139 <groupId>logkit</groupId>
140 <artifactId>logkit</artifactId>
141 </exclusion>
142 <exclusion>
143 <groupId>avalon-framework</groupId>
144 <artifactId>avalon-framework</artifactId>
145 </exclusion>
146 <exclusion>
147 <groupId>javax.servlet</groupId>
148 <artifactId>servlet-api</artifactId>
149 </exclusion>
150 </exclusions>
151 </dependency>
152 </dependencies>
153 <build>
154 <plugins>
155 <plugin>
156 <groupId>org.apache.maven.plugins</groupId>
157 <artifactId>maven-source-plugin</artifactId>
158 <executions>
159 <execution>
160 <goals>
161 <goal>jar</goal>
162 </goals>
163 </execution>
164 </executions>
165 </plugin>
166 </plugins>
167 </build>
168</project>
Note: See TracBrowser for help on using the repository browser.