fix ServiceHandler SpotBugs false positives
[transportpce.git] / tests / honeynode / 2.2.1 / netconf-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2016 Cisco Systems, Inc. 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"
7     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9     <modelVersion>4.0.0</modelVersion>
10     <parent>
11         <groupId>org.opendaylight.netconf</groupId>
12         <artifactId>netconf-parent</artifactId>
13         <version>1.5.0</version>
14         <relativePath />
15     </parent>
16     <artifactId>netconf-impl</artifactId>
17     <name>${project.artifactId}</name>
18     <packaging>bundle</packaging>
19     <properties>
20         <guice.version>4.2.2</guice.version>
21         <guice.config.version>1.4.1</guice.config.version>
22         <java.version>11</java.version>
23         <jacoco.version>0.8.5</jacoco.version>
24     </properties>
25     <dependencyManagement>
26         <dependencies>
27             <dependency>
28                 <groupId>org.opendaylight.controller</groupId>
29                 <artifactId>config-artifacts</artifactId>
30                 <version>0.9.0</version>
31                 <type>pom</type>
32                 <scope>import</scope>
33             </dependency>
34         </dependencies>
35     </dependencyManagement>
36     <dependencies>
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>ietf-netconf-monitoring</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>ietf-netconf-monitoring-extension</artifactId>
44         </dependency>
45         <!-- compile dependencies -->
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>netconf-api</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>netconf-mapping-api</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>netconf-notifications-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>netconf-notifications-impl</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>netconf-netty-util</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>netconf-util</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>com.google.guava</groupId>
72             <artifactId>guava</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.controller</groupId>
76             <artifactId>threadpool-config-api</artifactId>
77         </dependency>
78         <!-- test dependencies -->
79         <dependency>
80             <groupId>org.opendaylight.yangtools</groupId>
81             <artifactId>mockito-configuration</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.slf4j</groupId>
85             <artifactId>slf4j-api</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.slf4j</groupId>
89             <artifactId>slf4j-simple</artifactId>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>${project.groupId}</groupId>
94             <artifactId>netconf-client</artifactId>
95             <scope>test</scope>
96         </dependency>
97         <dependency>
98             <groupId>${project.groupId}</groupId>
99             <artifactId>netconf-client</artifactId>
100             <type>test-jar</type>
101             <scope>test</scope>
102         </dependency>
103         <dependency>
104             <groupId>${project.groupId}</groupId>
105             <artifactId>netconf-util</artifactId>
106             <type>test-jar</type>
107             <scope>test</scope>
108         </dependency>
109         <dependency>
110             <groupId>xmlunit</groupId>
111             <artifactId>xmlunit</artifactId>
112             <scope>test</scope>
113         </dependency>
114         <dependency>
115             <groupId>org.osgi</groupId>
116             <artifactId>org.osgi.compendium</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>org.osgi</groupId>
120             <artifactId>org.osgi.core</artifactId>
121         </dependency>
122     </dependencies>
123     <build>
124         <plugins>
125             <plugin>
126                 <artifactId>maven-compiler-plugin</artifactId>
127                 <version>3.8.0</version>
128                 <configuration>
129                     <source>${java.version}</source>
130                     <target>${java.version}</target>
131                 </configuration>
132             </plugin>
133             <plugin>
134                 <groupId>org.apache.felix</groupId>
135                 <artifactId>maven-bundle-plugin</artifactId>
136                 <configuration>
137                     <instructions>
138                         <Bundle-Activator>org.opendaylight.netconf.impl.osgi.NetconfImplActivator</Bundle-Activator>
139                         <Export-Package>org.opendaylight.netconf.impl.*</Export-Package>
140                     </instructions>
141                 </configuration>
142             </plugin>
143             <plugin>
144                 <groupId>org.apache.maven.plugins</groupId>
145                 <artifactId>maven-jar-plugin</artifactId>
146                 <executions>
147                     <execution>
148                         <goals>
149                             <goal>test-jar</goal>
150                         </goals>
151                         <phase>package</phase>
152                     </execution>
153                 </executions>
154             </plugin>
155         </plugins>
156         <pluginManagement>
157             <plugins>
158                 <!--This plugin's configuration is used to store Eclipse m2e settings 
159                     only. It has no influence on the Maven build itself. -->
160                 <plugin>
161                     <groupId>org.eclipse.m2e</groupId>
162                     <artifactId>lifecycle-mapping</artifactId>
163                     <version>1.0.0</version>
164                     <configuration>
165                         <lifecycleMappingMetadata>
166                             <pluginExecutions>
167                                 <pluginExecution>
168                                     <pluginExecutionFilter>
169                                         <groupId>
170                                             org.apache.maven.plugins
171                                         </groupId>
172                                         <artifactId>
173                                             maven-checkstyle-plugin
174                                         </artifactId>
175                                         <versionRange>
176                                             [2.17,)
177                                         </versionRange>
178                                         <goals>
179                                             <goal>check</goal>
180                                         </goals>
181                                     </pluginExecutionFilter>
182                                     <action>
183                                         <ignore></ignore>
184                                     </action>
185                                 </pluginExecution>
186                             </pluginExecutions>
187                         </lifecycleMappingMetadata>
188                     </configuration>
189                 </plugin>
190             </plugins>
191         </pluginManagement>
192     </build>
193 </project>