BUG-6650: ep-ip/sgt, rename groupbasedpolicy-ise-adapter to sxp-ise-adapter
[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.5.0-SNAPSHOT</version>
13         <relativePath>..</relativePath>
14     </parent>
15
16     <artifactId>sxp-ise-adapter</artifactId>
17     <packaging>bundle</packaging>
18     <name>sxp-integration_sxp-ise-adapter</name>
19
20     <dependencies>
21         <!-- model dependencies -->
22         <dependency>
23             <groupId>org.opendaylight.groupbasedpolicy</groupId>
24             <artifactId>sxp-ep-provider</artifactId>
25         </dependency>
26
27         <dependency>
28             <groupId>org.opendaylight.mdsal.model</groupId>
29             <artifactId>ietf-inet-types-2013-07-15</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.mdsal.model</groupId>
33             <artifactId>ietf-yang-types-20130715</artifactId>
34         </dependency>
35
36         <!-- util -->
37         <dependency>
38             <groupId>commons-net</groupId>
39             <artifactId>commons-net</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>com.sun.jersey</groupId>
43             <artifactId>jersey-client</artifactId>
44         </dependency>
45
46         <!-- testing dependencies -->
47         <dependency>
48             <groupId>junit</groupId>
49             <artifactId>junit</artifactId>
50             <scope>test</scope>
51         </dependency>
52         <dependency>
53             <groupId>org.mockito</groupId>
54             <artifactId>mockito-all</artifactId>
55             <scope>test</scope>
56         </dependency>
57         <dependency>
58             <groupId>org.slf4j</groupId>
59             <artifactId>slf4j-log4j12</artifactId>
60             <scope>test</scope>
61         </dependency>
62         <dependency>
63             <groupId>org.powermock</groupId>
64             <artifactId>powermock-module-junit4</artifactId>
65             <scope>test</scope>
66         </dependency>
67         <dependency>
68             <groupId>org.powermock</groupId>
69             <artifactId>powermock-api-mockito</artifactId>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.controller</groupId>
74             <artifactId>sal-binding-broker-impl</artifactId>
75             <type>test-jar</type>
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>