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

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

Update to 1.9.7

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-plugin</name>
28     <groupId>org.joiningtracks</groupId>
29     <artifactId>his-plugin</artifactId>
30     <packaging>pom</packaging>
31
32     <modules>
33         <module>bridge</module>
34         <module>api</module>
35     </modules>
36
37     <dependencies>
38         <!-- JBoss JPDL dependencies -->
39         <dependency>
40             <groupId>jbpm</groupId>
41             <artifactId>jpdl</artifactId>
42             <version>3.2.6.SP1</version>
43         </dependency>
44         <dependency>
45             <groupId>opensymphony</groupId>
46             <artifactId>quartz</artifactId>
47             <version>1.6.1</version>
48         </dependency>
49         <dependency>
50             <groupId>dom4j</groupId>
51             <artifactId>dom4j</artifactId>
52             <version>1.6.1</version>
53             <exclusions>
54                 <exclusion>
55                     <groupId>xml-apis</groupId>
56                     <artifactId>xml-apis</artifactId>
57                 </exclusion>
58             </exclusions>
59         </dependency>
60
61         <dependency>
62             <groupId>org.joiningtracks</groupId>
63             <artifactId>his-support-testutil</artifactId>
64             <version>${project.version}</version>
65             <scope>test</scope>
66         </dependency>
67     </dependencies>
68 </project>
Note: See TracBrowser for help on using the browser.