3f69d2f6692eab84bbd4e76a9471c48f3f8a55a1
[groupbasedpolicy.git] / sxp-integration / sxp-ep-provider / 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.groupbasedpolicy</groupId>
11         <artifactId>sxp-integration</artifactId>
12         <version>0.6.1-SNAPSHOT</version>
13         <relativePath>..</relativePath>
14     </parent>
15
16     <artifactId>sxp-ep-provider</artifactId>
17     <packaging>bundle</packaging>
18     <!-- <name> formatting is used by autorelease to parse and notify projects on
19        build failure. Please do not modify this unless you have a good reason. -->
20     <name>ODL :: groupbasedpolicy :: ${project.artifactId}</name>
21
22     <dependencies>
23         <!-- model dependencies -->
24         <dependency>
25             <groupId>org.opendaylight.mdsal.model</groupId>
26             <artifactId>ietf-inet-types-2013-07-15</artifactId>
27
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.mdsal.model</groupId>
31             <artifactId>yang-ext</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.groupbasedpolicy</groupId>
35             <artifactId>l2-l3-domain-extension</artifactId>
36         </dependency>
37
38         <!-- sxp deps -->
39         <dependency>
40             <groupId>org.opendaylight.sxp</groupId>
41             <artifactId>sxp-api</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.sxp</groupId>
45             <artifactId>sxp-core</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>commons-net</groupId>
49             <artifactId>commons-net</artifactId>
50         </dependency>
51
52         <!-- testing dependencies -->
53         <dependency>
54             <groupId>junit</groupId>
55             <artifactId>junit</artifactId>
56             <scope>test</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.mockito</groupId>
60             <artifactId>mockito-core</artifactId>
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <groupId>org.slf4j</groupId>
65             <artifactId>slf4j-log4j12</artifactId>
66             <scope>test</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.controller</groupId>
70             <artifactId>sal-binding-broker-impl</artifactId>
71             <type>test-jar</type>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.powermock</groupId>
76             <artifactId>powermock-module-junit4</artifactId>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.powermock</groupId>
81             <artifactId>powermock-api-mockito</artifactId>
82             <scope>test</scope>
83         </dependency>
84     </dependencies>
85
86     <!-- project build -->
87     <build>
88         <plugins>
89             <plugin>
90                 <groupId>org.apache.felix</groupId>
91                 <artifactId>maven-bundle-plugin</artifactId>
92                 <extensions>true</extensions>
93             </plugin>
94         </plugins>
95     </build>
96 </project>