BUG-5280: refactor CohortEntry
[controller.git] / opendaylight / md-sal / mdsal-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.5.0-SNAPSHOT</version>
15     <relativePath>../../config/config-parent</relativePath>
16   </parent>
17   <modelVersion>4.0.0</modelVersion>
18   <artifactId>mdsal-it-base</artifactId>
19   <version>1.4.0-SNAPSHOT</version>
20   <packaging>bundle</packaging>
21   <properties>
22     <config.version>0.5.0-SNAPSHOT</config.version>
23   </properties>
24   <dependencyManagement>
25     <dependencies>
26       <dependency>
27         <groupId>${project.groupId}</groupId>
28         <artifactId>mdsal-artifacts</artifactId>
29         <version>${project.version}</version>
30         <type>pom</type>
31         <scope>import</scope>
32       </dependency>
33     </dependencies>
34   </dependencyManagement>
35   <dependencies>
36     <dependency>
37       <groupId>${project.groupId}</groupId>
38       <artifactId>config-it-base</artifactId>
39       <version>${config.version}</version>
40       <scope>compile</scope>
41     </dependency>
42     <dependency>
43       <groupId>${project.groupId}</groupId>
44       <artifactId>sal-binding-api</artifactId>
45     </dependency>
46         <!-- Dependencies for pax exam karaf container -->
47     <dependency>
48         <groupId>org.ops4j.pax.exam</groupId>
49         <artifactId>pax-exam-container-karaf</artifactId>
50         <scope>compile</scope>
51     </dependency>
52     <dependency>
53         <groupId>org.ops4j.pax.exam</groupId>
54         <artifactId>pax-exam-junit4</artifactId>
55         <scope>compile</scope>
56     </dependency>
57     <dependency>
58         <groupId>org.ops4j.pax.exam</groupId>
59         <artifactId>pax-exam</artifactId>
60         <scope>compile</scope>
61     </dependency>
62     <dependency>
63         <groupId>org.ops4j.pax.url</groupId>
64         <artifactId>pax-url-aether</artifactId>
65         <scope>compile</scope>
66     </dependency>
67     <dependency>
68         <groupId>javax.inject</groupId>
69         <artifactId>javax.inject</artifactId>
70         <version>1</version>
71         <scope>compile</scope>
72     </dependency>
73     <dependency>
74         <groupId>org.apache.karaf.features</groupId>
75         <artifactId>org.apache.karaf.features.core</artifactId>
76         <version>${karaf.version}</version>
77         <scope>compile</scope>
78     </dependency>
79     <dependency>
80         <groupId>org.osgi</groupId>
81         <artifactId>org.osgi.core</artifactId>
82         <scope>compile</scope>
83     </dependency>
84     <dependency>
85         <groupId>junit</groupId>
86         <artifactId>junit</artifactId>
87         <scope>compile</scope>
88     </dependency>
89   </dependencies>
90 </project>