Merge "EPG CRUD"
[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</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.mdsal.model</groupId>
31       <artifactId>yang-ext</artifactId>
32     </dependency>
33     <!-- net utils dependencies -->
34     <dependency>
35       <groupId>com.googlecode.java-ipv6</groupId>
36       <artifactId>java-ipv6</artifactId>
37       <version>0.16</version>
38     </dependency>
39     <dependency>
40       <groupId>commons-net</groupId>
41       <artifactId>commons-net</artifactId>
42     </dependency>
43     <!-- testing dependencies -->
44     <dependency>
45       <groupId>junit</groupId>
46       <artifactId>junit</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.mockito</groupId>
51       <artifactId>mockito-all</artifactId>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.powermock</groupId>
56       <artifactId>powermock-module-junit4</artifactId>
57       <scope>test</scope>
58     </dependency>
59     <dependency>
60       <groupId>org.powermock</groupId>
61       <artifactId>powermock-api-mockito</artifactId>
62       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>sal-binding-broker-impl</artifactId>
67       <type>test-jar</type>
68       <scope>test</scope>
69     </dependency>
70     <dependency>
71         <groupId>org.opendaylight.controller.model</groupId>
72         <artifactId>model-inventory</artifactId>
73         <scope>test</scope>
74     </dependency>
75   </dependencies>
76
77 <!-- project build -->
78   <build>
79     <plugins>
80       <plugin>
81         <groupId>org.apache.felix</groupId>
82         <artifactId>maven-bundle-plugin</artifactId>
83         <extensions>true</extensions>
84         <configuration>
85           <instructions>
86             <Export-Package>
87               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.*,
88               org.opendaylight.controller.config.yang.config.groupbasedpolicy.*,
89               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.config.groupbasedpolicy.*,
90               org.opendaylight.groupbasedpolicy.api.*,
91               org.opendaylight.groupbasedpolicy.dto,
92               org.opendaylight.groupbasedpolicy.util,
93             </Export-Package>
94             <Embed-Dependency>java-ipv6</Embed-Dependency>
95           </instructions>
96         </configuration>
97       </plugin>
98       <plugin>
99         <groupId>org.apache.maven.plugins</groupId>
100         <artifactId>maven-jar-plugin</artifactId>
101         <executions>
102           <execution>
103             <goals>
104               <goal>test-jar</goal>
105             </goals>
106           </execution>
107         </executions>
108       </plugin>
109     </plugins>
110   </build>
111 </project>