Bump versions by x.y.(z+1)
[controller.git] / opendaylight / config / config-it-base / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12   <parent>
13     <groupId>org.opendaylight.controller</groupId>
14     <artifactId>config-parent</artifactId>
15     <version>0.7.4-SNAPSHOT</version>
16     <relativePath>../config-parent</relativePath>
17   </parent>
18   <modelVersion>4.0.0</modelVersion>
19   <artifactId>config-it-base</artifactId>
20   <packaging>bundle</packaging>
21
22   <properties>
23     <opendaylight.karaf.version>2.0.7</opendaylight.karaf.version>
24   </properties>
25
26   <dependencyManagement>
27     <dependencies>
28       <dependency>
29         <groupId>org.opendaylight.controller</groupId>
30         <artifactId>config-artifacts</artifactId>
31         <version>${project.version}</version>
32         <type>pom</type>
33         <scope>import</scope>
34       </dependency>
35     </dependencies>
36   </dependencyManagement>
37   <dependencies>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>config-util</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.odlparent</groupId>
44       <artifactId>opendaylight-karaf-empty</artifactId>
45       <version>2.0.7</version>
46       <type>zip</type>
47     </dependency>
48
49     <!-- Dependencies for pax exam karaf container -->
50     <dependency>
51         <groupId>org.ops4j.pax.exam</groupId>
52         <artifactId>pax-exam-container-karaf</artifactId>
53         <scope>compile</scope>
54     </dependency>
55     <dependency>
56         <groupId>org.ops4j.pax.exam</groupId>
57         <artifactId>pax-exam-junit4</artifactId>
58         <scope>compile</scope>
59     </dependency>
60     <dependency>
61         <groupId>org.ops4j.pax.exam</groupId>
62         <artifactId>pax-exam</artifactId>
63         <scope>compile</scope>
64     </dependency>
65     <dependency>
66         <groupId>org.ops4j.pax.url</groupId>
67         <artifactId>pax-url-aether</artifactId>
68         <scope>compile</scope>
69     </dependency>
70     <dependency>
71         <groupId>javax.inject</groupId>
72         <artifactId>javax.inject</artifactId>
73         <version>1</version>
74         <scope>compile</scope>
75     </dependency>
76     <dependency>
77         <groupId>org.apache.karaf.features</groupId>
78         <artifactId>org.apache.karaf.features.core</artifactId>
79         <version>${karaf.version}</version>
80         <scope>compile</scope>
81     </dependency>
82     <dependency>
83         <groupId>org.osgi</groupId>
84         <artifactId>org.osgi.core</artifactId>
85         <scope>compile</scope>
86     </dependency>
87     <dependency>
88         <groupId>junit</groupId>
89         <artifactId>junit</artifactId>
90         <scope>compile</scope>
91     </dependency>
92   </dependencies>
93   <build>
94     <resources>
95       <resource>
96         <directory>src/main/resources</directory>
97         <filtering>true</filtering>
98       </resource>
99     </resources>
100   </build>
101 </project>