ea9b632bb106d06f22b0674aef480f6f281a18ee
[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>managed-tx-parent</artifactId>
15         <version>0.7.0-SNAPSHOT</version>
16         <relativePath>../../commons/managed-tx-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         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.genius</groupId>
31             <artifactId>idmanager-api</artifactId>
32             <version>${genius.version}</version>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.genius</groupId>
36             <artifactId>interfacemanager-api</artifactId>
37             <version>${genius.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.genius</groupId>
41             <artifactId>itm-api</artifactId>
42             <version>${genius.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.genius</groupId>
46             <artifactId>mdsalutil-api</artifactId>
47             <version>${genius.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>aclservice-api</artifactId>
52             <version>${project.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>elanmanager-api</artifactId>
57             <version>${project.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>policyservice-api</artifactId>
62             <version>${project.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>vpnmanager-api</artifactId>
67             <version>${project.version}</version>
68         </dependency>
69         <dependency>
70             <groupId>org.powermock</groupId>
71             <artifactId>powermock-api-mockito</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.powermock</groupId>
76             <artifactId>powermock-module-junit4</artifactId>
77             <scope>test</scope>
78         </dependency>
79     </dependencies>
80     <build>
81         <plugins>
82             <plugin>
83                 <groupId>org.apache.aries.blueprint</groupId>
84                 <artifactId>blueprint-maven-plugin</artifactId>
85             </plugin>
86             <plugin>
87                 <groupId>org.apache.felix</groupId>
88                 <artifactId>maven-bundle-plugin</artifactId>
89                 <extensions>true</extensions>
90                 <configuration>
91                     <instructions>
92                         <!-- We purposely don't export any packages to avoid any dependencies
93                              on this bundle and prevent @Singleton annotated classes from being
94                              accidently included in another bundle's blueprint XML  -->
95                         <Export-Package/>
96                     </instructions>
97                 </configuration>
98             </plugin>
99         </plugins>
100     </build>
101 </project>