GBP core tests improvements
[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     <!-- testing dependencies -->
34     <dependency>
35       <groupId>junit</groupId>
36       <artifactId>junit</artifactId>
37       <scope>test</scope>
38     </dependency>
39     <dependency>
40       <groupId>org.mockito</groupId>
41       <artifactId>mockito-all</artifactId>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.powermock</groupId>
46       <artifactId>powermock-module-junit4</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.powermock</groupId>
51       <artifactId>powermock-api-mockito</artifactId>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.controller</groupId>
56       <artifactId>sal-binding-broker-impl</artifactId>
57       <type>test-jar</type>
58       <scope>test</scope>
59     </dependency>
60   </dependencies>
61
62 <!-- project build -->
63   <build>
64     <plugins>
65       <plugin>
66         <groupId>org.apache.felix</groupId>
67         <artifactId>maven-bundle-plugin</artifactId>
68         <extensions>true</extensions>
69         <configuration>
70           <instructions>
71             <Export-Package>
72               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.*,
73               org.opendaylight.controller.config.yang.config.groupbasedpolicy.*,
74               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.config.groupbasedpolicy.*,
75               org.opendaylight.groupbasedpolicy.api.*,
76               org.opendaylight.groupbasedpolicy.dto,
77               org.opendaylight.groupbasedpolicy.util,
78             </Export-Package>
79           </instructions>
80         </configuration>
81       </plugin>
82       <plugin>
83         <groupId>org.apache.maven.plugins</groupId>
84         <artifactId>maven-jar-plugin</artifactId>
85         <executions>
86           <execution>
87             <goals>
88               <goal>test-jar</goal>
89             </goals>
90           </execution>
91         </executions>
92       </plugin>
93     </plugins>
94   </build>
95 </project>