b1f4c324802904c4d5a24866a0a3e5bacd5fdcf3
[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.4.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   <dependencyManagement>
21     <dependencies>
22       <dependency>
23         <groupId>org.opendaylight.controller</groupId>
24         <artifactId>config-artifacts</artifactId>
25         <version>${project.version}</version>
26         <type>pom</type>
27         <scope>import</scope>
28       </dependency>
29     </dependencies>
30   </dependencyManagement>
31   <dependencies>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>config-util</artifactId>
35     </dependency>
36     <!-- Dependencies for pax exam karaf container -->
37     <dependency>
38         <groupId>org.ops4j.pax.exam</groupId>
39         <artifactId>pax-exam-container-karaf</artifactId>
40         <scope>compile</scope>
41     </dependency>
42     <dependency>
43         <groupId>org.ops4j.pax.exam</groupId>
44         <artifactId>pax-exam-junit4</artifactId>
45         <scope>compile</scope>
46     </dependency>
47     <dependency>
48         <groupId>org.ops4j.pax.exam</groupId>
49         <artifactId>pax-exam</artifactId>
50         <scope>compile</scope>
51     </dependency>
52     <dependency>
53         <groupId>org.ops4j.pax.url</groupId>
54         <artifactId>pax-url-aether</artifactId>
55         <scope>compile</scope>
56     </dependency>
57     <dependency>
58         <groupId>javax.inject</groupId>
59         <artifactId>javax.inject</artifactId>
60         <version>1</version>
61         <scope>compile</scope>
62     </dependency>
63     <dependency>
64         <groupId>org.apache.karaf.features</groupId>
65         <artifactId>org.apache.karaf.features.core</artifactId>
66         <version>${karaf.version}</version>
67         <scope>compile</scope>
68     </dependency>
69     <dependency>
70         <groupId>org.osgi</groupId>
71         <artifactId>org.osgi.core</artifactId>
72         <scope>compile</scope>
73     </dependency>
74     <dependency>
75         <groupId>junit</groupId>
76         <artifactId>junit</artifactId>
77         <scope>compile</scope>
78     </dependency>
79   </dependencies>
80   <build>
81     <resources>
82       <resource>
83         <directory>src/main/resources</directory>
84         <filtering>true</filtering>
85       </resource>
86     </resources>
87   </build>
88 </project>