BUG-7657: Karaf 4 migration: provide Karaf 4 groupbasedpolicy features
[groupbasedpolicy.git] / renderers / faas / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2015 Huawei Technologies 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.groupbasedpolicy</groupId>
12     <artifactId>groupbasedpolicy-renderers</artifactId>
13     <version>0.6.0-SNAPSHOT</version>
14     <relativePath>../</relativePath>
15   </parent>
16
17   <artifactId>faas-renderer</artifactId>
18   <packaging>bundle</packaging>
19   <!-- <name> formatting is used by autorelease to parse and notify projects on
20        build failure. Please do not modify this unless you have a good reason. -->
21   <name>ODL :: groupbasedpolicy :: ${project.artifactId}</name>
22
23   <properties>
24     <openflowplugin.version>0.5.0-SNAPSHOT</openflowplugin.version>
25     <faas.version>1.3.0-SNAPSHOT</faas.version>
26   </properties>
27
28   <dependencies>
29     <dependency>
30       <groupId>org.opendaylight.faas</groupId>
31       <artifactId>uln-mapper-impl</artifactId>
32       <version>${faas.version}</version>
33     </dependency>
34     <!-- testing dependencies -->
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>sal-binding-broker-impl</artifactId>
38       <type>test-jar</type>
39       <scope>test</scope>
40     </dependency>
41     <dependency>
42       <groupId>junit</groupId>
43       <artifactId>junit</artifactId>
44       <scope>test</scope>
45     </dependency>
46     <dependency>
47       <groupId>org.mockito</groupId>
48       <artifactId>mockito-core</artifactId>
49       <scope>test</scope>
50     </dependency>
51     <dependency>
52       <groupId>org.powermock</groupId>
53       <artifactId>powermock-core</artifactId>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.powermock</groupId>
58       <artifactId>powermock-module-junit4</artifactId>
59       <scope>test</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.powermock</groupId>
63       <artifactId>powermock-api-mockito</artifactId>
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.faas.rev151009.*
79             </Export-Package>
80           </instructions>
81         </configuration>
82       </plugin>
83     </plugins>
84   </build>
85 </project>