root/his/tags/1.9.7/service/pom.xml

Revision 2313, 3.1 kB (checked in by olger, 2 years ago)

Update to 1.9.7

  • Property svn:eol-style set to native
Line 
1 <!--
2   ~ Copyright 2008-2009 Stichting JoiningTracks, The Netherlands
3   ~ Licensed under the Apache License, Version 2.0 (the "License");
4   ~ you may not use this file except in compliance with the License.
5   ~ You may obtain a copy of the License at
6   ~
7   ~ http://www.apache.org/licenses/LICENSE-2.0
8   ~
9   ~ Unless required by applicable law or agreed to in writing,
10   ~ software distributed under the License is distributed on an "AS IS" BASIS,
11   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12   ~ See the License for the specific language governing permissions and
13   ~ limitations under the License.
14   -->
15
16 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
18
19     <parent>
20         <groupId>org.joiningtracks</groupId>
21         <artifactId>his</artifactId>
22         <version>1.9.7</version>
23         <relativePath>../pom.xml</relativePath>
24     </parent>
25
26     <modelVersion>4.0.0</modelVersion>
27     <name>his-service</name>
28     <groupId>org.joiningtracks</groupId>
29     <artifactId>his-service</artifactId>
30     <packaging>jar</packaging>
31
32     <dependencies>
33
34         <!-- Module dependencies -->
35
36         <dependency>
37             <groupId>org.joiningtracks</groupId>
38             <artifactId>his-data</artifactId>
39             <version>${project.version}</version>
40         </dependency>
41
42         <dependency>
43             <groupId>org.joiningtracks</groupId>
44             <artifactId>his-support-util</artifactId>
45             <version>${project.version}</version>
46         </dependency>
47
48         <!-- External dependencies -->
49
50         <dependency>
51             <groupId>org.joiningtracks</groupId>
52             <artifactId>his-support-testutil</artifactId>
53             <version>${project.version}</version>
54             <scope>test</scope>
55         </dependency>
56
57         <dependency>
58             <groupId>velocity</groupId>
59             <artifactId>velocity</artifactId>
60             <version>1.5</version>
61         </dependency>
62
63         <dependency>
64             <groupId>javax.mail</groupId>
65             <artifactId>mail</artifactId>
66             <version>1.4</version>
67         </dependency>
68
69         <dependency>
70             <groupId>org.jvnet.mock-javamail</groupId>
71             <artifactId>mock-javamail</artifactId>
72             <version>1.7</version>
73             <scope>test</scope>
74         </dependency>
75
76         <dependency>
77             <groupId>commons-httpclient</groupId>
78             <artifactId>commons-httpclient</artifactId>
79             <version>3.1</version>
80         </dependency>
81
82         <dependency>
83             <groupId>org.springframework.security</groupId>
84             <artifactId>spring-security-core</artifactId>
85             <version>2.0.4</version>
86             <scope>test</scope>
87             <classifier>tests</classifier>
88         </dependency>
89
90         <dependency>
91             <groupId>org.opensymphony.quartz</groupId>
92             <artifactId>quartz</artifactId>
93             <version>1.6.1</version>
94         </dependency>
95
96     </dependencies>
97
98 </project>
Note: See TracBrowser for help on using the browser.