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 | </dependency>
|
---|
49 | <dependency>
|
---|
50 | <groupId>org.springframework.security</groupId>
|
---|
51 | <artifactId>spring-security-core</artifactId>
|
---|
52 | <version>${spring.security.version}</version>
|
---|
53 | </dependency>
|
---|
54 | <dependency>
|
---|
55 | <groupId>javax.servlet</groupId>
|
---|
56 | <artifactId>servlet-api</artifactId>
|
---|
57 | <version>${servlet.version}</version>
|
---|
58 | <scope>provided</scope>
|
---|
59 | </dependency>
|
---|
60 | <dependency>
|
---|
61 | <groupId>javax.resource</groupId>
|
---|
62 | <artifactId>connector</artifactId>
|
---|
63 | <version>1.0</version>
|
---|
64 | <scope>provided</scope>
|
---|
65 | </dependency>
|
---|
66 | <dependency>
|
---|
67 | <groupId>org.slf4j</groupId>
|
---|
68 | <artifactId>slf4j-api</artifactId>
|
---|
69 | <version>${slf4j.version}</version>
|
---|
70 | </dependency>
|
---|
71 | <dependency>
|
---|
72 | <groupId>org.slf4j</groupId>
|
---|
73 | <artifactId>jcl-over-slf4j</artifactId>
|
---|
74 | <version>${slf4j.version}</version>
|
---|
75 | </dependency>
|
---|
76 | <dependency>
|
---|
77 | <groupId>org.slf4j</groupId>
|
---|
78 | <artifactId>log4j-over-slf4j</artifactId>
|
---|
79 | <version>${slf4j.version}</version>
|
---|
80 | </dependency>
|
---|
81 | <dependency>
|
---|
82 | <groupId>junit</groupId>
|
---|
83 | <artifactId>junit</artifactId>
|
---|
84 | <version>3.8.1</version>
|
---|
85 | <scope>test</scope>
|
---|
86 | </dependency>
|
---|
87 | <dependency>
|
---|
88 | <groupId>org.slf4j</groupId>
|
---|
89 | <artifactId>slf4j-nop</artifactId>
|
---|
90 | <version>${slf4j.version}</version>
|
---|
91 | <scope>test</scope>
|
---|
92 | </dependency>
|
---|
93 | <dependency>
|
---|
94 | <groupId>org.springframework</groupId>
|
---|
95 | <artifactId>spring-mock</artifactId>
|
---|
96 | <version>${spring.version}</version>
|
---|
97 | <scope>test</scope>
|
---|
98 | </dependency>
|
---|
99 | <dependency>
|
---|
100 | <groupId>org.easymock</groupId>
|
---|
101 | <!-- change to org.easymock for later version -->
|
---|
102 | <artifactId>easymock</artifactId>
|
---|
103 | <version>${easymock.version}</version>
|
---|
104 | <scope>test</scope>
|
---|
105 | </dependency>
|
---|
106 | </dependencies>
|
---|
107 | <build>
|
---|
108 | <plugins>
|
---|
109 | <plugin>
|
---|
110 | <groupId>org.apache.maven.plugins</groupId>
|
---|
111 | <artifactId>maven-jar-plugin</artifactId>
|
---|
112 | <executions>
|
---|
113 | <execution>
|
---|
114 | <phase>package</phase>
|
---|
115 | <goals>
|
---|
116 | <goal>test-jar</goal>
|
---|
117 | </goals>
|
---|
118 | </execution>
|
---|
119 | </executions>
|
---|
120 | </plugin>
|
---|
121 | <plugin>
|
---|
122 | <groupId>org.apache.maven.plugins</groupId>
|
---|
123 | <artifactId>maven-source-plugin</artifactId>
|
---|
124 | <executions>
|
---|
125 | <execution>
|
---|
126 | <phase>package</phase>
|
---|
127 | <configuration>
|
---|
128 | <attach>true</attach>
|
---|
129 | </configuration>
|
---|
130 | <goals>
|
---|
131 | <goal>jar</goal>
|
---|
132 | <goal>test-jar</goal>
|
---|
133 | </goals>
|
---|
134 | </execution>
|
---|
135 | </executions>
|
---|
136 | </plugin>
|
---|
137 | </plugins>
|
---|
138 | </build>
|
---|
139 | </project>
|
---|