Release Nitrogen
[groupbasedpolicy.git] / sxp-integration / sxp-ise-adapter / 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.0</version>
13         <relativePath>..</relativePath>
14     </parent>
15
16     <artifactId>sxp-ise-adapter</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.groupbasedpolicy</groupId>
26             <artifactId>sxp-ep-provider</artifactId>
27         </dependency>
28
29         <dependency>
30             <groupId>org.opendaylight.mdsal.model</groupId>
31             <artifactId>ietf-inet-types-2013-07-15</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.mdsal.model</groupId>
35             <artifactId>ietf-yang-types-20130715</artifactId>
36         </dependency>
37
38         <!-- util -->
39         <dependency>
40             <groupId>commons-net</groupId>
41             <artifactId>commons-net</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>com.sun.jersey</groupId>
45             <artifactId>jersey-client</artifactId>
46         </dependency>
47
48         <!-- testing dependencies -->
49         <dependency>
50             <groupId>junit</groupId>
51             <artifactId>junit</artifactId>
52             <scope>test</scope>
53         </dependency>
54         <dependency>
55             <groupId>org.mockito</groupId>
56             <artifactId>mockito-core</artifactId>
57             <scope>test</scope>
58         </dependency>
59         <dependency>
60             <groupId>org.slf4j</groupId>
61             <artifactId>slf4j-log4j12</artifactId>
62             <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.powermock</groupId>
66             <artifactId>powermock-module-junit4</artifactId>
67             <scope>test</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.powermock</groupId>
71             <artifactId>powermock-api-mockito</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.controller</groupId>
76             <artifactId>sal-binding-broker-impl</artifactId>
77             <type>test-jar</type>
78             <scope>test</scope>
79         </dependency>
80     </dependencies>
81
82     <!-- project build -->
83     <build>
84         <plugins>
85             <plugin>
86                 <groupId>org.apache.felix</groupId>
87                 <artifactId>maven-bundle-plugin</artifactId>
88                 <extensions>true</extensions>
89             </plugin>
90         </plugins>
91     </build>
92 </project>