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