Fix logging issues in natservice
[netvirt.git] / natservice / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. 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.7.0-SNAPSHOT</version>
16         <relativePath>../../commons/binding-parent</relativePath>
17     </parent>
18
19     <artifactId>natservice-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>commons-net</groupId>
27             <artifactId>commons-net</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>javax.inject</groupId>
31             <artifactId>javax.inject</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.controller</groupId>
35             <artifactId>sal-binding-broker-impl</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.genius</groupId>
39             <artifactId>arputil-api</artifactId>
40             <version>${genius.version}</version>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.genius</groupId>
44             <artifactId>idmanager-api</artifactId>
45             <version>${genius.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.genius</groupId>
49             <artifactId>interfacemanager-api</artifactId>
50             <version>${genius.version}</version>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.genius</groupId>
54             <artifactId>itm-api</artifactId>
55             <version>${genius.version}</version>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.genius</groupId>
59             <artifactId>mdsalutil-api</artifactId>
60             <version>${genius.version}</version>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.infrautils</groupId>
64             <artifactId>counters-api</artifactId>
65             <version>${infrautils.version}</version>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>bgpmanager-api</artifactId>
70             <version>${project.version}</version>
71         </dependency>
72         <dependency>
73             <groupId>${project.groupId}</groupId>
74             <artifactId>elanmanager-api</artifactId>
75             <version>${project.version}</version>
76         </dependency>
77         <dependency>
78             <groupId>${project.groupId}</groupId>
79             <artifactId>fibmanager-api</artifactId>
80             <version>${project.version}</version>
81         </dependency>
82         <dependency>
83             <groupId>${project.groupId}</groupId>
84             <artifactId>natservice-api</artifactId>
85             <version>${project.version}</version>
86         </dependency>
87         <dependency>
88             <groupId>${project.groupId}</groupId>
89             <artifactId>neutronvpn-api</artifactId>
90             <version>${project.version}</version>
91         </dependency>
92         <dependency>
93             <groupId>${project.groupId}</groupId>
94             <artifactId>vpnmanager-api</artifactId>
95             <version>${project.version}</version>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.openflowplugin.model</groupId>
99             <artifactId>model-flow-service</artifactId>
100             <version>${openflowplugin.version}</version>
101         </dependency>
102         <dependency>
103             <groupId>org.powermock</groupId>
104             <artifactId>powermock-api-mockito</artifactId>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>org.powermock</groupId>
109             <artifactId>powermock-module-junit4</artifactId>
110             <scope>test</scope>
111         </dependency>
112     </dependencies>
113
114     <build>
115         <plugins>
116             <plugin>
117                 <groupId>org.apache.aries.blueprint</groupId>
118                 <artifactId>blueprint-maven-plugin</artifactId>
119             </plugin>
120             <plugin>
121                 <groupId>org.apache.felix</groupId>
122                 <artifactId>maven-bundle-plugin</artifactId>
123                 <extensions>true</extensions>
124                 <configuration>
125                     <instructions>
126                         <!-- We purposely don't export any packages to avoid any dependencies
127                              on this bundle and prevent @Singleton annotated classes from being
128                              accidently included in another bundle's blueprint XML  -->
129                         <Export-Package/>
130                     </instructions>
131                 </configuration>
132             </plugin>
133             <plugin>
134                 <groupId>org.codehaus.mojo</groupId>
135                 <artifactId>build-helper-maven-plugin</artifactId>
136                 <executions>
137                     <execution>
138                         <id>attach-artifacts</id>
139                         <goals>
140                             <goal>attach-artifact</goal>
141                         </goals>
142                         <phase>package</phase>
143                         <configuration>
144                             <artifacts>
145                                 <artifact>
146                                     <file>${project.build.directory}/classes/initial/netvirt-natservice-config.xml
147                                     </file>
148                                     <type>xml</type>
149                                     <classifier>config</classifier>
150                                 </artifact>
151                             </artifacts>
152                         </configuration>
153                     </execution>
154                 </executions>
155             </plugin>
156         </plugins>
157     </build>
158 </project>