Inactive data provider will not cause SingleFeatureTest to stuck
[groupbasedpolicy.git] / ip-sgt-distribution-service / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved.
3   This program and the accompanying materials are made available under the
4   terms of the Eclipse Public License v1.0 which accompanies this distribution,
5   and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8     <modelVersion>4.0.0</modelVersion>
9     <parent>
10         <groupId>org.opendaylight.controller</groupId>
11         <artifactId>config-parent</artifactId>
12         <version>0.6.0-SNAPSHOT</version>
13         <relativePath/>
14     </parent>
15
16     <groupId>org.opendaylight.groupbasedpolicy</groupId>
17     <artifactId>ip-sgt-distribution-service</artifactId>
18     <version>0.5.0-SNAPSHOT</version>
19     <packaging>bundle</packaging>
20     <name>groupbasedpolicy-ip-sgt-distribution-service</name>
21
22     <properties>
23         <sxp.version>1.4.0-SNAPSHOT</sxp.version>
24     </properties>
25
26     <dependencyManagement>
27         <dependencies>
28             <dependency>
29                 <groupId>org.opendaylight.sxp</groupId>
30                 <artifactId>sxp-core</artifactId>
31                 <version>${sxp.version}</version>
32             </dependency>
33             <dependency>
34                 <groupId>org.opendaylight.sxp</groupId>
35                 <artifactId>sxp-api</artifactId>
36                 <version>${sxp.version}</version>
37             </dependency>
38             <dependency>
39                 <groupId>org.opendaylight.sxp</groupId>
40                 <artifactId>sxp-controller</artifactId>
41                 <version>${sxp.version}</version>
42             </dependency>
43         </dependencies>
44     </dependencyManagement>
45
46     <dependencies>
47         <dependency>
48             <groupId>org.opendaylight.mdsal.model</groupId>
49             <artifactId>ietf-topology</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.mdsal.model</groupId>
53             <artifactId>ietf-inet-types-2013-07-15</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.mdsal.model</groupId>
57             <artifactId>yang-ext</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.sxp</groupId>
61             <artifactId>sxp-core</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.sxp</groupId>
65             <artifactId>sxp-api</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.sxp</groupId>
69             <artifactId>sxp-controller</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.groupbasedpolicy</groupId>
73             <artifactId>groupbasedpolicy</artifactId>
74             <version>${project.version}</version>
75         </dependency>
76     <!-- testing dependencies -->
77         <dependency>
78             <groupId>org.opendaylight.groupbasedpolicy</groupId>
79             <artifactId>groupbasedpolicy</artifactId>
80             <version>${project.version}</version>
81             <type>test-jar</type>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>junit</groupId>
86             <artifactId>junit</artifactId>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.mockito</groupId>
91             <artifactId>mockito-all</artifactId>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.powermock</groupId>
96             <artifactId>powermock-module-junit4</artifactId>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.powermock</groupId>
101             <artifactId>powermock-api-mockito</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.slf4j</groupId>
106             <artifactId>slf4j-log4j12</artifactId>
107             <scope>test</scope>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.controller</groupId>
111             <artifactId>sal-binding-broker-impl</artifactId>
112             <type>test-jar</type>
113             <scope>test</scope>
114         </dependency>
115     </dependencies>
116
117     <!-- project build -->
118     <build>
119         <plugins>
120             <plugin>
121                 <groupId>org.apache.felix</groupId>
122                 <artifactId>maven-bundle-plugin</artifactId>
123                 <extensions>true</extensions>
124             </plugin>
125         </plugins>
126     </build>
127 </project>