Code coverage increasing for faas-renderer
[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.4.3-SNAPSHOT</version>
14     <relativePath/>
15   </parent>
16
17   <groupId>org.opendaylight.groupbasedpolicy</groupId>
18   <artifactId>groupbasedpolicy</artifactId>
19   <version>0.3.3-SNAPSHOT</version>
20   <packaging>bundle</packaging>
21   <name>groupbasedpolicy-base</name>
22
23     <properties>
24       <powermock.version>1.5.2</powermock.version>
25     </properties>
26
27     <dependencies>
28     <!-- model dependencies -->
29     <dependency>
30       <groupId>org.opendaylight.mdsal.model</groupId>
31       <artifactId>ietf-inet-types</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.mdsal.model</groupId>
35       <artifactId>yang-ext</artifactId>
36     </dependency>
37     <!-- testing dependencies -->
38     <dependency>
39       <groupId>junit</groupId>
40       <artifactId>junit</artifactId>
41       <scope>test</scope>
42     </dependency>
43     <dependency>
44       <groupId>org.mockito</groupId>
45       <artifactId>mockito-all</artifactId>
46       <scope>test</scope>
47     </dependency>
48     <dependency>
49       <groupId>org.powermock</groupId>
50       <artifactId>powermock-module-junit4</artifactId>
51       <version>${powermock.version}</version>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.powermock</groupId>
56       <artifactId>powermock-api-mockito</artifactId>
57       <version>${powermock.version}</version>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>sal-binding-broker-impl</artifactId>
63       <type>test-jar</type>
64       <scope>test</scope>
65     </dependency>
66   </dependencies>
67
68 <!-- project build -->
69   <build>
70     <plugins>
71       <plugin>
72         <groupId>org.apache.felix</groupId>
73         <artifactId>maven-bundle-plugin</artifactId>
74         <extensions>true</extensions>
75         <configuration>
76           <instructions>
77             <Export-Package>
78               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.*,
79               org.opendaylight.controller.config.yang.config.groupbasedpolicy.*,
80               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.config.groupbasedpolicy.*,
81               org.opendaylight.groupbasedpolicy.api.*,
82               org.opendaylight.groupbasedpolicy.dto,
83               org.opendaylight.groupbasedpolicy.util,
84             </Export-Package>
85           </instructions>
86         </configuration>
87       </plugin>
88       <plugin>
89         <groupId>org.apache.maven.plugins</groupId>
90         <artifactId>maven-jar-plugin</artifactId>
91         <executions>
92           <execution>
93             <goals>
94               <goal>test-jar</goal>
95             </goals>
96           </execution>
97         </executions>
98       </plugin>
99     </plugins>
100   </build>
101 </project>