BUG-7657: Karaf 4 migration: provide Karaf 4 groupbasedpolicy features
[groupbasedpolicy.git] / sxp-integration / 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.7.0-SNAPSHOT</version>
13         <relativePath/>
14     </parent>
15
16     <groupId>org.opendaylight.groupbasedpolicy</groupId>
17     <artifactId>ip-sgt-distribution-service</artifactId>
18     <version>0.6.0-SNAPSHOT</version>
19     <packaging>bundle</packaging>
20     <!-- <name> formatting is used by autorelease to parse and notify projects on
21        build failure. Please do not modify this unless you have a good reason. -->
22     <name>ODL :: groupbasedpolicy :: ${project.artifactId}</name>
23
24     <properties>
25         <sxp.version>1.5.0-SNAPSHOT</sxp.version>
26     </properties>
27
28     <dependencyManagement>
29         <dependencies>
30             <dependency>
31                 <groupId>org.opendaylight.sxp</groupId>
32                 <artifactId>sxp-core</artifactId>
33                 <version>${sxp.version}</version>
34             </dependency>
35             <dependency>
36                 <groupId>org.opendaylight.sxp</groupId>
37                 <artifactId>sxp-api</artifactId>
38                 <version>${sxp.version}</version>
39             </dependency>
40             <dependency>
41                 <groupId>org.opendaylight.sxp</groupId>
42                 <artifactId>sxp-controller</artifactId>
43                 <version>${sxp.version}</version>
44             </dependency>
45         </dependencies>
46     </dependencyManagement>
47
48     <dependencies>
49         <dependency>
50             <groupId>org.opendaylight.mdsal.model</groupId>
51             <artifactId>ietf-topology</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.mdsal.model</groupId>
55             <artifactId>ietf-inet-types-2013-07-15</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.mdsal.model</groupId>
59             <artifactId>yang-ext</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.sxp</groupId>
63             <artifactId>sxp-core</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.sxp</groupId>
67             <artifactId>sxp-api</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.sxp</groupId>
71             <artifactId>sxp-controller</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.groupbasedpolicy</groupId>
75             <artifactId>groupbasedpolicy</artifactId>
76             <version>${project.version}</version>
77         </dependency>
78         <!-- testing dependencies -->
79         <dependency>
80             <groupId>org.opendaylight.groupbasedpolicy</groupId>
81             <artifactId>groupbasedpolicy</artifactId>
82             <version>${project.version}</version>
83             <type>test-jar</type>
84             <scope>test</scope>
85         </dependency>
86         <dependency>
87             <groupId>junit</groupId>
88             <artifactId>junit</artifactId>
89             <scope>test</scope>
90         </dependency>
91         <dependency>
92             <groupId>org.mockito</groupId>
93             <artifactId>mockito-core</artifactId>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.powermock</groupId>
98             <artifactId>powermock-module-junit4</artifactId>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.powermock</groupId>
103             <artifactId>powermock-api-mockito</artifactId>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.controller</groupId>
108             <artifactId>sal-binding-broker-impl</artifactId>
109             <type>test-jar</type>
110             <scope>test</scope>
111         </dependency>
112     </dependencies>
113
114     <!-- project build -->
115     <build>
116         <plugins>
117             <plugin>
118                 <groupId>org.apache.felix</groupId>
119                 <artifactId>maven-bundle-plugin</artifactId>
120                 <extensions>true</extensions>
121             </plugin>
122         </plugins>
123     </build>
124 </project>