BUG-6650: ep-ip/sgt, implement and wire template provider
[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.5.0-SNAPSHOT</version>
13         <relativePath>..</relativePath>
14     </parent>
15
16     <artifactId>sxp-ep-provider</artifactId>
17     <packaging>bundle</packaging>
18     <name>sxp-integration_sxp-ep-provider</name>
19
20     <dependencies>
21         <!-- model dependencies -->
22         <dependency>
23             <groupId>org.opendaylight.mdsal.model</groupId>
24             <artifactId>ietf-inet-types-2013-07-15</artifactId>
25
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.mdsal.model</groupId>
29             <artifactId>yang-ext</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.groupbasedpolicy</groupId>
33             <artifactId>l2-l3-domain-extension</artifactId>
34         </dependency>
35
36         <!-- sxp deps -->
37         <dependency>
38             <groupId>org.opendaylight.sxp</groupId>
39             <artifactId>sxp-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.sxp</groupId>
43             <artifactId>sxp-core</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>commons-net</groupId>
47             <artifactId>commons-net</artifactId>
48         </dependency>
49
50         <!-- testing dependencies -->
51         <dependency>
52             <groupId>junit</groupId>
53             <artifactId>junit</artifactId>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>org.mockito</groupId>
58             <artifactId>mockito-all</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.slf4j</groupId>
63             <artifactId>slf4j-log4j12</artifactId>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.controller</groupId>
68             <artifactId>sal-binding-broker-impl</artifactId>
69             <type>test-jar</type>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.powermock</groupId>
74             <artifactId>powermock-module-junit4</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.powermock</groupId>
79             <artifactId>powermock-api-mockito</artifactId>
80             <scope>test</scope>
81         </dependency>
82     </dependencies>
83
84     <!-- project build -->
85     <build>
86         <plugins>
87             <plugin>
88                 <groupId>org.apache.felix</groupId>
89                 <artifactId>maven-bundle-plugin</artifactId>
90                 <extensions>true</extensions>
91             </plugin>
92         </plugins>
93     </build>
94 </project>