JDK 11 controller support in tox job
[transportpce.git] / tests / honeynode / 2.2.1 / netconf-netty-util / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2014 Cisco Systems, Inc. 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>bundle-parent</artifactId>
15     <version>2.0.5</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.netconf</groupId>
20   <artifactId>netconf-netty-util</artifactId>
21   <packaging>bundle</packaging>
22   <version>1.3.1</version>
23   <name>${project.artifactId}</name>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.netconf</groupId>
29         <artifactId>netconf-artifacts</artifactId>
30         <version>${project.version}</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34       <dependency>
35         <groupId>org.opendaylight.yangtools</groupId>
36         <artifactId>yangtools-artifacts</artifactId>
37         <version>1.2.1</version>
38         <type>pom</type>
39         <scope>import</scope>
40       </dependency>
41       <!--<dependency>
42         <groupId>openexi</groupId>
43         <artifactId>nagasena</artifactId>
44         <version>0000.0002.0062.0</version>
45       </dependency>
46       <dependency>
47         <groupId>openexi</groupId>
48         <artifactId>nagasena-rta</artifactId>
49         <version>0000.0002.0062.0</version>
50       </dependency>-->
51       <dependency>
52         <groupId>com.siemens.ct.exi</groupId>
53         <artifactId>exificient</artifactId>
54         <version>1.0.1</version>
55       </dependency>
56     </dependencies>
57   </dependencyManagement>
58
59   <dependencies>
60     <!-- compile dependencies -->
61     <dependency>
62       <groupId>${project.groupId}</groupId>
63       <artifactId>netconf-api</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>${project.groupId}</groupId>
67       <artifactId>netconf-mapping-api</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>${project.groupId}</groupId>
71       <artifactId>netconf-util</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>com.google.guava</groupId>
75       <artifactId>guava</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>io.netty</groupId>
79       <artifactId>netty-handler</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.apache.sshd</groupId>
83       <artifactId>sshd-core</artifactId>
84       <version>0.14.0</version>
85     </dependency>
86     <!--<dependency>
87       <groupId>openexi</groupId>
88       <artifactId>nagasena</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>openexi</groupId>
92       <artifactId>nagasena-rta</artifactId>
93     </dependency>-->
94     <dependency>
95       <groupId>com.siemens.ct.exi</groupId>
96       <artifactId>exificient</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.slf4j</groupId>
100       <artifactId>slf4j-api</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>xmlunit</groupId>
104       <artifactId>xmlunit</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.yangtools</groupId>
108       <artifactId>mockito-configuration</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>org.opendaylight.aaa</groupId>
112       <artifactId>aaa-encrypt-service</artifactId>
113       <version>0.6.1</version>
114     </dependency>
115   </dependencies>
116
117   <build>
118     <plugins>
119       <plugin>
120         <groupId>org.apache.maven.plugins</groupId>
121         <artifactId>maven-jar-plugin</artifactId>
122         <executions>
123           <execution>
124             <goals>
125               <goal>test-jar</goal>
126             </goals>
127             <phase>package</phase>
128           </execution>
129         </executions>
130       </plugin>
131       <plugin>
132         <groupId>org.apache.maven.plugins</groupId>
133         <artifactId>maven-checkstyle-plugin</artifactId>
134         <configuration>
135           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
136         </configuration>
137       </plugin>
138     </plugins>
139   </build>
140
141 </project>