3877239a6f64dc709a2578482ad5bb46a673006f
[groupbasedpolicy.git] / groupbasedpolicy / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2015 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
10   <parent>
11     <groupId>org.opendaylight.controller</groupId>
12     <artifactId>config-parent</artifactId>
13     <version>0.5.0-SNAPSHOT</version>
14     <relativePath/>
15   </parent>
16
17   <groupId>org.opendaylight.groupbasedpolicy</groupId>
18   <artifactId>groupbasedpolicy</artifactId>
19   <version>0.4.0-SNAPSHOT</version>
20   <packaging>bundle</packaging>
21   <name>groupbasedpolicy-base</name>
22
23   <dependencies>
24     <!-- model dependencies -->
25     <dependency>
26       <groupId>org.opendaylight.mdsal.model</groupId>
27       <artifactId>ietf-inet-types-2013-07-15</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.mdsal.model</groupId>
31       <artifactId>ietf-yang-types-20130715</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.mdsal.model</groupId>
35       <artifactId>yang-ext</artifactId>
36     </dependency>
37     <!-- net utils dependencies -->
38     <dependency>
39       <groupId>com.googlecode.java-ipv6</groupId>
40       <artifactId>java-ipv6</artifactId>
41       <version>0.16</version>
42     </dependency>
43     <dependency>
44       <groupId>commons-net</groupId>
45       <artifactId>commons-net</artifactId>
46     </dependency>
47     <!-- testing dependencies -->
48     <dependency>
49       <groupId>junit</groupId>
50       <artifactId>junit</artifactId>
51       <scope>test</scope>
52     </dependency>
53     <dependency>
54       <groupId>org.mockito</groupId>
55       <artifactId>mockito-all</artifactId>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.powermock</groupId>
60       <artifactId>powermock-module-junit4</artifactId>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.powermock</groupId>
65       <artifactId>powermock-api-mockito</artifactId>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>sal-binding-broker-impl</artifactId>
71       <type>test-jar</type>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75         <groupId>org.opendaylight.controller.model</groupId>
76         <artifactId>model-inventory</artifactId>
77         <scope>test</scope>
78     </dependency>
79   </dependencies>
80
81 <!-- project build -->
82   <build>
83     <plugins>
84       <plugin>
85         <groupId>org.apache.felix</groupId>
86         <artifactId>maven-bundle-plugin</artifactId>
87         <extensions>true</extensions>
88         <configuration>
89           <instructions>
90             <Export-Package>
91               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.*,
92               org.opendaylight.controller.config.yang.config.groupbasedpolicy.*,
93               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.config.groupbasedpolicy.*,
94               org.opendaylight.groupbasedpolicy.api.*,
95               org.opendaylight.groupbasedpolicy.dto,
96               org.opendaylight.groupbasedpolicy.util,
97             </Export-Package>
98             <Embed-Dependency>java-ipv6</Embed-Dependency>
99           </instructions>
100         </configuration>
101       </plugin>
102       <plugin>
103         <groupId>org.apache.maven.plugins</groupId>
104         <artifactId>maven-jar-plugin</artifactId>
105         <executions>
106           <execution>
107             <goals>
108               <goal>test-jar</goal>
109             </goals>
110           </execution>
111         </executions>
112       </plugin>
113     </plugins>
114   </build>
115 </project>