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

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

committing first working version of EDIS maven build - upgraded to maven 3.0.3, flexmojos 3.8, flex sdk 3.6.0.16995, removed dependencies on KAAJEE and maven repository on VA intranet, replaced with one on filesystem

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