BUG-6650: ep-ip/sgt, move groupbasedpolicy-ise-adapter into sxp-integration
[groupbasedpolicy.git] / sxp-integration / groupbasedpolicy-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>groupbasedpolicy-ise-adapter</artifactId>
17     <packaging>bundle</packaging>
18     <name>sxp-integration_groupbasedpolicy-ise-adapter</name>
19
20     <properties>
21         <sxp.version>1.4.0-SNAPSHOT</sxp.version>
22     </properties>
23
24     <dependencyManagement>
25         <dependencies>
26             <dependency>
27                 <groupId>org.opendaylight.groupbasedpolicy</groupId>
28                 <artifactId>groupbasedpolicy-artifacts</artifactId>
29                 <version>${project.version}</version>
30                 <scope>import</scope>
31                 <type>pom</type>
32             </dependency>
33             <dependency>
34                 <groupId>org.opendaylight.sxp</groupId>
35                 <artifactId>sxp-api</artifactId>
36                 <version>${sxp.version}</version>
37             </dependency>
38         </dependencies>
39     </dependencyManagement>
40
41     <dependencies>
42         <!-- model dependencies -->
43         <dependency>
44             <groupId>org.opendaylight.groupbasedpolicy</groupId>
45             <artifactId>sxp-mapper</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.sxp</groupId>
49             <artifactId>sxp-api</artifactId>
50         </dependency>
51
52         <dependency>
53             <groupId>org.opendaylight.mdsal.model</groupId>
54             <artifactId>ietf-inet-types-2013-07-15</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.mdsal.model</groupId>
58             <artifactId>ietf-yang-types-20130715</artifactId>
59         </dependency>
60
61         <!-- util -->
62         <dependency>
63             <groupId>commons-net</groupId>
64             <artifactId>commons-net</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>com.sun.jersey</groupId>
68             <artifactId>jersey-client</artifactId>
69         </dependency>
70
71         <!-- testing dependencies -->
72         <dependency>
73             <groupId>junit</groupId>
74             <artifactId>junit</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.mockito</groupId>
79             <artifactId>mockito-all</artifactId>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.slf4j</groupId>
84             <artifactId>slf4j-log4j12</artifactId>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.powermock</groupId>
89             <artifactId>powermock-module-junit4</artifactId>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.powermock</groupId>
94             <artifactId>powermock-api-mockito</artifactId>
95             <scope>test</scope>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.controller</groupId>
99             <artifactId>sal-binding-broker-impl</artifactId>
100             <type>test-jar</type>
101             <scope>test</scope>
102         </dependency>
103     </dependencies>
104
105     <!-- project build -->
106     <build>
107         <plugins>
108             <plugin>
109                 <groupId>org.apache.felix</groupId>
110                 <artifactId>maven-bundle-plugin</artifactId>
111                 <extensions>true</extensions>
112             </plugin>
113         </plugins>
114     </build>
115 </project>