source: EDIS/tags/ed/tracking-server-vista/pom.xml@ 1240

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

new version from the VA

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