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