Release Nitrogen
[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.mdsal</groupId>
11         <artifactId>binding-parent</artifactId>
12         <version>0.11.0</version>
13         <relativePath/>
14     </parent>
15
16     <groupId>org.opendaylight.groupbasedpolicy</groupId>
17     <artifactId>ip-sgt-distribution-service</artifactId>
18     <version>0.6.0</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</sxp.version>
26     </properties>
27
28     <dependencyManagement>
29         <dependencies>
30             <dependency>
31                <groupId>org.opendaylight.controller</groupId>
32                 <artifactId>mdsal-artifacts</artifactId>
33                 <version>1.6.0</version>
34                 <type>pom</type>
35                 <scope>import</scope>
36             </dependency>
37             <dependency>
38                 <groupId>org.opendaylight.sxp</groupId>
39                 <artifactId>sxp-core</artifactId>
40                 <version>${sxp.version}</version>
41             </dependency>
42             <dependency>
43                 <groupId>org.opendaylight.sxp</groupId>
44                 <artifactId>sxp-api</artifactId>
45                 <version>${sxp.version}</version>
46             </dependency>
47             <dependency>
48                 <groupId>org.opendaylight.sxp</groupId>
49                 <artifactId>sxp-controller</artifactId>
50                 <version>${sxp.version}</version>
51             </dependency>
52         </dependencies>
53     </dependencyManagement>
54
55     <dependencies>
56         <dependency>
57             <groupId>org.opendaylight.mdsal.model</groupId>
58             <artifactId>ietf-topology</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.mdsal.model</groupId>
62             <artifactId>ietf-inet-types-2013-07-15</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.mdsal.model</groupId>
66             <artifactId>yang-ext</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.sxp</groupId>
70             <artifactId>sxp-core</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.sxp</groupId>
74             <artifactId>sxp-api</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.sxp</groupId>
78             <artifactId>sxp-controller</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.groupbasedpolicy</groupId>
82             <artifactId>groupbasedpolicy</artifactId>
83             <version>${project.version}</version>
84         </dependency>
85         <!-- testing dependencies -->
86         <dependency>
87             <groupId>org.opendaylight.groupbasedpolicy</groupId>
88             <artifactId>groupbasedpolicy</artifactId>
89             <version>${project.version}</version>
90             <type>test-jar</type>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>junit</groupId>
95             <artifactId>junit</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.mockito</groupId>
100             <artifactId>mockito-core</artifactId>
101             <scope>test</scope>
102         </dependency>
103         <dependency>
104             <groupId>org.powermock</groupId>
105             <artifactId>powermock-module-junit4</artifactId>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.powermock</groupId>
110             <artifactId>powermock-api-mockito</artifactId>
111             <scope>test</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.controller</groupId>
115             <artifactId>sal-binding-broker-impl</artifactId>
116             <type>test-jar</type>
117             <scope>test</scope>
118         </dependency>
119     </dependencies>
120
121     <!-- project build -->
122     <build>
123         <plugins>
124             <plugin>
125                 <groupId>org.apache.felix</groupId>
126                 <artifactId>maven-bundle-plugin</artifactId>
127                 <extensions>true</extensions>
128             </plugin>
129         </plugins>
130     </build>
131 </project>