apply checkstyle check during build for neutron-mapper
[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.7.0-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.powermock</groupId>
70             <artifactId>powermock-module-junit4</artifactId>
71             <scope>test</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.powermock</groupId>
75             <artifactId>powermock-api-mockito</artifactId>
76             <scope>test</scope>
77         </dependency>
78     </dependencies>
79
80     <!-- project build -->
81     <build>
82         <plugins>
83             <plugin>
84                 <groupId>org.apache.felix</groupId>
85                 <artifactId>maven-bundle-plugin</artifactId>
86                 <extensions>true</extensions>
87             </plugin>
88         </plugins>
89     </build>
90 </project>