1 | <?xml version="1.0"?>
|
---|
2 | <!-- -->
|
---|
3 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
---|
4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
---|
5 | <modelVersion>4.0.0</modelVersion>
|
---|
6 | <groupId>gov.va.med.edp</groupId>
|
---|
7 | <artifactId>vistalink-tester</artifactId>
|
---|
8 | <packaging>jar</packaging>
|
---|
9 | <name>VistALink Tester Application</name>
|
---|
10 | <version>0.1</version>
|
---|
11 | <description>Emergency Department Integration Software - Tracking Server Application</description>
|
---|
12 | <dependencyManagement>
|
---|
13 | <dependencies>
|
---|
14 | <dependency>
|
---|
15 | <groupId>org.springframework</groupId>
|
---|
16 | <artifactId>spring-core</artifactId>
|
---|
17 | <version>${spring.version}</version>
|
---|
18 | </dependency>
|
---|
19 | <dependency>
|
---|
20 | <groupId>org.springframework</groupId>
|
---|
21 | <artifactId>spring-context</artifactId>
|
---|
22 | <version>${spring.version}</version>
|
---|
23 | </dependency>
|
---|
24 | <dependency>
|
---|
25 | <groupId>org.springframework</groupId>
|
---|
26 | <artifactId>spring-beans</artifactId>
|
---|
27 | <version>${spring.version}</version>
|
---|
28 | </dependency>
|
---|
29 | <dependency>
|
---|
30 | <groupId>org.springframework.security</groupId>
|
---|
31 | <artifactId>spring-security-core</artifactId>
|
---|
32 | <version>${spring.security.version}</version>
|
---|
33 | <exclusions>
|
---|
34 | <exclusion>
|
---|
35 | <groupId>org.springframework</groupId>
|
---|
36 | <artifactId>spring-support</artifactId>
|
---|
37 | </exclusion>
|
---|
38 | <exclusion>
|
---|
39 | <groupId>org.springframework</groupId>
|
---|
40 | <artifactId>spring-aop</artifactId>
|
---|
41 | </exclusion>
|
---|
42 | <exclusion>
|
---|
43 | <groupId>commons-logging</groupId>
|
---|
44 | <artifactId>commons-logging</artifactId>
|
---|
45 | </exclusion>
|
---|
46 | </exclusions>
|
---|
47 | </dependency>
|
---|
48 | </dependencies>
|
---|
49 | </dependencyManagement>
|
---|
50 | <dependencies>
|
---|
51 | <dependency>
|
---|
52 | <groupId>gov.va.med.edp</groupId>
|
---|
53 | <artifactId>edis-tracking-server-vista</artifactId>
|
---|
54 | <version>1.0.1.WorldVistA-SNAPSHOT</version>
|
---|
55 | </dependency>
|
---|
56 | <dependency>
|
---|
57 | <groupId>javax.resource</groupId>
|
---|
58 | <artifactId>connector</artifactId>
|
---|
59 | <version>1.0</version>
|
---|
60 | </dependency>
|
---|
61 | <dependency>
|
---|
62 | <groupId>net.sf.jopt-simple</groupId>
|
---|
63 | <artifactId>jopt-simple</artifactId>
|
---|
64 | <version>4.0-beta1</version>
|
---|
65 | </dependency>
|
---|
66 | <dependency>
|
---|
67 | <groupId>org.slf4j</groupId>
|
---|
68 | <artifactId>slf4j-simple</artifactId>
|
---|
69 | <version>${slf4j.version}</version>
|
---|
70 | </dependency>
|
---|
71 | </dependencies>
|
---|
72 | <build>
|
---|
73 | <plugins>
|
---|
74 | <plugin>
|
---|
75 | <groupId>org.apache.maven.plugins</groupId>
|
---|
76 | <artifactId>maven-compiler-plugin</artifactId>
|
---|
77 | <version>2.3.2</version>
|
---|
78 | <configuration>
|
---|
79 | <target>1.6</target>
|
---|
80 | <source>1.6</source>
|
---|
81 | </configuration>
|
---|
82 | </plugin>
|
---|
83 | <plugin>
|
---|
84 | <groupId>org.apache.maven.plugins</groupId>
|
---|
85 | <artifactId>maven-jar-plugin</artifactId>
|
---|
86 | <configuration>
|
---|
87 | <archive>
|
---|
88 | <manifest>
|
---|
89 | <mainClass>gov.va.med.edp.VistaLinkTester</mainClass>
|
---|
90 | </manifest>
|
---|
91 | </archive>
|
---|
92 | </configuration>
|
---|
93 | </plugin>
|
---|
94 | <plugin>
|
---|
95 | <groupId>org.dstovall</groupId>
|
---|
96 | <artifactId>onejar-maven-plugin</artifactId>
|
---|
97 | <version>1.4.4</version>
|
---|
98 | <executions>
|
---|
99 | <execution>
|
---|
100 | <configuration>
|
---|
101 | <!-- Optional -->
|
---|
102 | <onejarVersion>0.97</onejarVersion>
|
---|
103 | <classifier></classifier>
|
---|
104 | </configuration>
|
---|
105 | <goals>
|
---|
106 | <goal>one-jar</goal>
|
---|
107 | </goals>
|
---|
108 | </execution>
|
---|
109 | </executions>
|
---|
110 | </plugin>
|
---|
111 | </plugins>
|
---|
112 | </build>
|
---|
113 | <pluginRepositories>
|
---|
114 | <pluginRepository>
|
---|
115 | <id>onejar-maven-plugin.googlecode.com</id>
|
---|
116 | <url>http://onejar-maven-plugin.googlecode.com/svn/mavenrepo</url>
|
---|
117 | </pluginRepository>
|
---|
118 | </pluginRepositories>
|
---|
119 | <properties>
|
---|
120 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
---|
121 |
|
---|
122 | <!-- versions of dependencies -->
|
---|
123 | <spring.version>2.5.6</spring.version>
|
---|
124 | <spring.security.version>2.0.7.RELEASE</spring.security.version>
|
---|
125 | <slf4j.version>1.6.2</slf4j.version>
|
---|
126 | </properties>
|
---|
127 | </project>
|
---|