source: EDIS/trunk/java/tracking-server-vista/pom.xml@ 1252

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

removed cruft related to KAAJEE, stubbed in spring-security/VistALink authentication implementation

File size: 5.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-vista</artifactId>
13 <packaging>jar</packaging>
14 <name>EDIS VistA Support Library</name>
15 <version>1.0.1.WorldVistA-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 </dependency>
39 <dependency>
40 <groupId>gov.va.med.vistalink</groupId>
41 <artifactId>vljConnector</artifactId>
42 <version>1.5.0.026</version>
43 </dependency>
44 <dependency>
45 <groupId>jaxen</groupId>
46 <artifactId>jaxen</artifactId>
47 <version>1.1.1</version>
48 <exclusions>
49 <exclusion>
50 <groupId>xerces</groupId>
51 <artifactId>xmlParserAPIs</artifactId>
52 </exclusion>
53 <exclusion>
54 <groupId>xerces</groupId>
55 <artifactId>xercesImpl</artifactId>
56 </exclusion>
57 <exclusion>
58 <groupId>xml-apis</groupId>
59 <artifactId>xml-apis</artifactId>
60 </exclusion>
61 <exclusion>
62 <groupId>xom</groupId>
63 <artifactId>xom</artifactId>
64 </exclusion>
65 </exclusions>
66 </dependency>
67 <dependency>
68 <groupId>org.springframework.security</groupId>
69 <artifactId>spring-security-core</artifactId>
70 <version>${spring.security.version}</version>
71 </dependency>
72 <dependency>
73 <groupId>javax.servlet</groupId>
74 <artifactId>servlet-api</artifactId>
75 <version>${servlet.version}</version>
76 <scope>provided</scope>
77 </dependency>
78 <dependency>
79 <groupId>javax.resource</groupId>
80 <artifactId>connector</artifactId>
81 <version>1.0</version>
82 <scope>provided</scope>
83 </dependency>
84 <dependency>
85 <groupId>org.slf4j</groupId>
86 <artifactId>slf4j-api</artifactId>
87 <version>${slf4j.version}</version>
88 </dependency>
89 <dependency>
90 <groupId>org.slf4j</groupId>
91 <artifactId>jcl-over-slf4j</artifactId>
92 <version>${slf4j.version}</version>
93 </dependency>
94 <dependency>
95 <groupId>org.slf4j</groupId>
96 <artifactId>log4j-over-slf4j</artifactId>
97 <version>${slf4j.version}</version>
98 </dependency>
99 <dependency>
100 <groupId>junit</groupId>
101 <artifactId>junit</artifactId>
102 <version>3.8.1</version>
103 <scope>test</scope>
104 </dependency>
105 <dependency>
106 <groupId>org.slf4j</groupId>
107 <artifactId>slf4j-nop</artifactId>
108 <version>${slf4j.version}</version>
109 <scope>test</scope>
110 </dependency>
111 <dependency>
112 <groupId>org.springframework</groupId>
113 <artifactId>spring-mock</artifactId>
114 <version>${spring.version}</version>
115 <scope>test</scope>
116 </dependency>
117 <dependency>
118 <groupId>org.easymock</groupId>
119 <!-- change to org.easymock for later version -->
120 <artifactId>easymock</artifactId>
121 <version>${easymock.version}</version>
122 <scope>test</scope>
123 </dependency>
124 </dependencies>
125 <build>
126 <plugins>
127 <plugin>
128 <groupId>org.apache.maven.plugins</groupId>
129 <artifactId>maven-jar-plugin</artifactId>
130 <executions>
131 <execution>
132 <phase>package</phase>
133 <goals>
134 <goal>test-jar</goal>
135 </goals>
136 </execution>
137 </executions>
138 </plugin>
139 <plugin>
140 <groupId>org.apache.maven.plugins</groupId>
141 <artifactId>maven-source-plugin</artifactId>
142 <executions>
143 <execution>
144 <phase>package</phase>
145 <configuration>
146 <attach>true</attach>
147 </configuration>
148 <goals>
149 <goal>jar</goal>
150 <goal>test-jar</goal>
151 </goals>
152 </execution>
153 </executions>
154 </plugin>
155 </plugins>
156 </build>
157</project>
Note: See TracBrowser for help on using the repository browser.