d946551c38246bf45ffbd1f6ec59ebc2b81e176f
[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.5.0-SNAPSHOT</version>
14     <relativePath>../</relativePath>
15   </parent>
16
17   <artifactId>faas-renderer</artifactId>
18   <packaging>bundle</packaging>
19
20   <properties>
21     <openflowplugin.version>0.4.0-SNAPSHOT</openflowplugin.version>
22     <faas.version>1.2.0-SNAPSHOT</faas.version>
23   </properties>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.opendaylight.faas</groupId>
28       <artifactId>uln-mapper-impl</artifactId>
29       <version>${faas.version}</version>
30     </dependency>
31     <!-- testing dependencies -->
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>sal-binding-broker-impl</artifactId>
35       <type>test-jar</type>
36       <scope>test</scope>
37     </dependency>
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-core</artifactId>
46       <scope>test</scope>
47     </dependency>
48     <dependency>
49       <groupId>org.powermock</groupId>
50       <artifactId>powermock-core</artifactId>
51       <scope>test</scope>
52     </dependency>
53     <dependency>
54       <groupId>org.powermock</groupId>
55       <artifactId>powermock-module-junit4</artifactId>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.powermock</groupId>
60       <artifactId>powermock-api-mockito</artifactId>
61       <scope>test</scope>
62     </dependency>
63   </dependencies>
64
65  <!-- project build -->
66   <build>
67     <plugins>
68       <plugin>
69         <groupId>org.apache.felix</groupId>
70         <artifactId>maven-bundle-plugin</artifactId>
71         <extensions>true</extensions>
72         <configuration>
73           <instructions>
74             <Export-Package>
75               org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.faas.rev151009.*
76             </Export-Package>
77           </instructions>
78         </configuration>
79       </plugin>
80     </plugins>
81   </build>
82 </project>