source: EDIS/trunk/java/tracking-server-vista/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: 5.9 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-T29-SNAPSHOT</version>
9 <relativePath>../tracking-parent</relativePath>
10 </parent>
11 <groupId>gov.va.med.edp</groupId>
12 <artifactId>edis-tracking-server-vista</artifactId>
13 <packaging>jar</packaging>
14 <name>EDIS VistA Support Library</name>
15 <version>1.0-T29-SNAPSHOT</version>
16 <dependencies>
17 <dependency>
18 <groupId>org.springframework</groupId>
19 <artifactId>spring-jca</artifactId>
20 <version>2.0.8</version>
21</dependency>
22
23 <dependency>
24 <groupId>org.springframework</groupId>
25 <artifactId>spring-tx</artifactId>
26 <version>2.5.5</version>
27 <exclusions>
28 <exclusion>
29 <groupId>org.springframework</groupId>
30 <artifactId>spring-context</artifactId>
31 </exclusion>
32 </exclusions>
33 </dependency>
34 <dependency>
35 <groupId>gov.va.med.vistalink</groupId>
36 <artifactId>vljFoundationsLib</artifactId>
37 <version>1.5.0.026</version>
38 <scope>provided</scope>
39 <!-- remove provided scope in later versions when vistalink is not on classpath of app server -->
40 </dependency>
41 <dependency>
42 <groupId>gov.va.med.vistalink</groupId>
43 <artifactId>vljConnector</artifactId>
44 <version>1.5.0.026</version>
45 <scope>provided</scope>
46 <!-- remove provided scope in later versions when vistalink is not on classpath of app server -->
47 </dependency>
48 <!-- required by vistalink (update vistalink POMs to list dependencies properly) -->
49 <dependency>
50 <groupId>jaxen</groupId>
51 <artifactId>jaxen</artifactId>
52 <version>1.1.1</version>
53 </dependency>
54 <dependency>
55 <groupId>org.springframework.security</groupId>
56 <artifactId>spring-security-core</artifactId>
57 <version>${spring.security.version}</version>
58 </dependency>
59 <dependency><!-- replace this with the two below once we upgrade to newer weblogic -->
60 <groupId>weblogic</groupId>
61 <artifactId>weblogic</artifactId>
62 <version>8.1</version>
63 <scope>provided</scope>
64 </dependency>
65 <!--<dependency>-->
66 <!--<groupId>javax.servlet</groupId>-->
67 <!--<artifactId>servlet-api</artifactId>-->
68 <!--<version>${servlet.version}</version>-->
69 <!--<scope>provided</scope>-->
70 <!--</dependency>-->
71 <!--<dependency>-->
72 <!--<groupId>geronimo-spec</groupId>--><!-- this is the JCA API -->
73 <!--<artifactId>geronimo-spec-j2ee-connector</artifactId>-->
74 <!--<version>1.5-rc4</version>-->
75 <!--<scope>provided</scope>-->
76 <!--</dependency>-->
77 <dependency>
78 <groupId>org.slf4j</groupId>
79 <artifactId>slf4j-api</artifactId>
80 <version>${slf4j.version}</version>
81 </dependency>
82 <dependency>
83 <groupId>org.slf4j</groupId>
84 <artifactId>jcl-over-slf4j</artifactId>
85 <version>${slf4j.version}</version>
86 </dependency>
87 <dependency>
88 <groupId>org.slf4j</groupId>
89 <artifactId>log4j-over-slf4j</artifactId>
90 <version>${slf4j.version}</version>
91 </dependency>
92 <dependency>
93 <groupId>junit</groupId>
94 <artifactId>junit</artifactId>
95 <version>3.8.1</version>
96 <scope>test</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.slf4j</groupId>
100 <artifactId>slf4j-nop</artifactId>
101 <version>${slf4j.version}</version>
102 <scope>test</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.springframework</groupId>
106 <artifactId>spring-mock</artifactId>
107 <version>${spring.version}</version>
108 <scope>test</scope>
109 </dependency>
110 <dependency>
111 <groupId>org.easymock</groupId>
112 <!-- change to org.easymock for later version -->
113 <artifactId>easymock</artifactId>
114 <version>${easymock.version}</version>
115 <scope>test</scope>
116 </dependency>
117 </dependencies>
118 <build>
119 <plugins>
120 <plugin>
121 <groupId>org.apache.maven.plugins</groupId>
122 <artifactId>maven-jar-plugin</artifactId>
123 <executions>
124 <execution>
125 <phase>package</phase>
126 <goals>
127 <goal>test-jar</goal>
128 </goals>
129 </execution>
130 </executions>
131 </plugin>
132 <plugin>
133 <groupId>org.apache.maven.plugins</groupId>
134 <artifactId>maven-source-plugin</artifactId>
135 <executions>
136 <execution>
137 <phase>package</phase>
138 <configuration>
139 <attach>true</attach>
140 </configuration>
141 <goals>
142 <goal>jar</goal>
143 <goal>test-jar</goal>
144 </goals>
145 </execution>
146 </executions>
147 </plugin>
148 </plugins>
149 </build>
150</project>
Note: See TracBrowser for help on using the repository browser.