f41c5d549f1d39743066fe24490e959ebe3b329f
[netvirt.git] / policyservice / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2017 Hewlett Packard Enterprise, Co. and others.  All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <parent>
13         <groupId>org.opendaylight.netvirt</groupId>
14         <artifactId>binding-parent</artifactId>
15         <version>0.11.0-SNAPSHOT</version>
16         <relativePath>../../commons/binding-parent</relativePath>
17     </parent>
18
19     <artifactId>policyservice-impl</artifactId>
20     <name>ODL :: netvirt :: ${project.artifactId}</name>
21     <packaging>bundle</packaging>
22     <modelVersion>4.0.0</modelVersion>
23
24     <dependencies>
25         <dependency>
26             <groupId>javax.inject</groupId>
27             <artifactId>javax.inject</artifactId>
28             <scope>provided</scope>
29             <optional>true</optional>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.genius</groupId>
33             <artifactId>idmanager-api</artifactId>
34             <version>${genius.version}</version>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.genius</groupId>
38             <artifactId>interfacemanager-api</artifactId>
39             <version>${genius.version}</version>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.genius</groupId>
43             <artifactId>itm-api</artifactId>
44             <version>${genius.version}</version>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.genius</groupId>
48             <artifactId>mdsalutil-api</artifactId>
49             <version>${genius.version}</version>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>aclservice-api</artifactId>
54             <version>${project.version}</version>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>elanmanager-api</artifactId>
59             <version>${project.version}</version>
60         </dependency>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>policyservice-api</artifactId>
64             <version>${project.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>vpnmanager-api</artifactId>
69             <version>${project.version}</version>
70         </dependency>
71         <!--dependency>
72             <groupId>org.powermock</groupId>
73             <artifactId>powermock-api-mockito</artifactId>
74             <scope>test</scope>
75         </dependency-->
76         <dependency>
77             <groupId>org.powermock</groupId>
78             <artifactId>powermock-module-junit4</artifactId>
79             <scope>test</scope>
80         </dependency>
81     </dependencies>
82     <build>
83         <plugins>
84             <plugin>
85                 <groupId>org.apache.aries.blueprint</groupId>
86                 <artifactId>blueprint-maven-plugin</artifactId>
87             </plugin>
88             <plugin>
89                 <groupId>org.apache.felix</groupId>
90                 <artifactId>maven-bundle-plugin</artifactId>
91                 <extensions>true</extensions>
92                 <configuration>
93                     <instructions>
94                         <!-- We purposely don't export any packages to avoid any dependencies
95                              on this bundle and prevent @Singleton annotated classes from being
96                              accidently included in another bundle's blueprint XML  -->
97                         <Export-Package/>
98                     </instructions>
99                 </configuration>
100             </plugin>
101         </plugins>
102     </build>
103 </project>