a9392a14304e6b839b3a267755a193c44593566f
[transportpce.git] / tests / honeynode / 1.2.1 / restconf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- ~ Copyright (c) 2017 Cisco and/or its affiliates. ~ ~ Licensed under
3     the Apache License, Version 2.0 (the "License"); ~ you may not use this file
4     except in compliance with the License. ~ You may obtain a copy of the License
5     at: ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by
6     applicable law or agreed to in writing, software ~ distributed under the
7     License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS
8     OF ANY KIND, either express or implied. ~ See the License for the specific
9     language governing permissions and ~ limitations under the License. -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13     <parent>
14         <artifactId>impl-parent</artifactId>
15         <groupId>io.fd.honeycomb.common</groupId>
16         <version>1.19.04</version>
17     </parent>
18     <modelVersion>4.0.0</modelVersion>
19     <groupId>io.fd.honeycomb.transportpce</groupId>
20     <artifactId>restconf</artifactId>
21     <name>${project.artifactId}</name>
22     <properties>
23         <jersey.version>1.19.4</jersey.version>
24         <glassfish-jersey.version>2.25.1</glassfish-jersey.version>
25         <servlet.version>3.1.0</servlet.version>
26         <jetty.version>9.3.21.v20170918</jetty.version>
27         <yang.modules.whitelist>
28             ${project.basedir}/src/main/resources/honeycomb-minimal-resources/config/restconf-whitelist.xml
29         </yang.modules.whitelist>
30         <honeycomb.version>1.19.04</honeycomb.version>
31         <java.version>11</java.version>
32         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
33         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
34         <maven.javadoc.skip>true</maven.javadoc.skip>
35         <guice.version>4.2.2</guice.version>
36         <guice.config.version>1.4.1</guice.config.version>
37     </properties>
38     <dependencies>
39         <!-- DI -->
40         <dependency>
41             <groupId>com.google.inject</groupId>
42             <artifactId>guice</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>net.jmob</groupId>
46             <artifactId>guice.conf</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>io.fd.honeycomb</groupId>
50             <artifactId>binding-init</artifactId>
51             <version>${honeycomb.version}</version>
52         </dependency>
53         <dependency>
54             <groupId>io.fd.honeycomb.transportpce</groupId>
55             <artifactId>minimal-distribution-core</artifactId>
56             <version>1.19.04</version>
57         </dependency>
58         <!-- Northbound common -->
59         <dependency>
60             <groupId>io.fd.honeycomb.northbound</groupId>
61             <artifactId>common</artifactId>
62             <version>${honeycomb.version}</version>
63         </dependency>
64         <!-- ODL-Restconf -->
65         <dependency>
66             <groupId>org.opendaylight.netconf</groupId>
67             <artifactId>restconf-nb-bierman02</artifactId>
68         </dependency>
69         <!-- Jersey + Jetty for RESTCONF -->
70         <dependency>
71             <groupId>org.eclipse.jetty</groupId>
72             <artifactId>jetty-server</artifactId>
73             <version>${jetty.version}</version>
74         </dependency>
75         <dependency>
76             <groupId>javax.servlet</groupId>
77             <artifactId>javax.servlet-api</artifactId>
78             <version>${servlet.version}</version>
79         </dependency>
80         <dependency>
81             <groupId>org.eclipse.jetty</groupId>
82             <artifactId>jetty-webapp</artifactId>
83             <version>${jetty.version}</version>
84         </dependency>
85         <dependency>
86             <groupId>org.eclipse.jetty</groupId>
87             <artifactId>jetty-servlets</artifactId>
88             <version>${jetty.version}</version>
89         </dependency>
90         <dependency>
91             <groupId>org.glassfish.jersey.core</groupId>
92             <artifactId>jersey-server</artifactId>
93             <version>${glassfish-jersey.version}</version>
94         </dependency>
95         <dependency>
96             <groupId>org.glassfish.jersey.containers</groupId>
97             <artifactId>jersey-container-servlet-core</artifactId>
98             <version>${glassfish-jersey.version}</version>
99         </dependency>
100         <!-- javax.annotation -->
101         <dependency>
102             <groupId>com.google.code.findbugs</groupId>
103             <artifactId>jsr305</artifactId>
104         </dependency>
105     </dependencies>
106     <build>
107         <pluginManagement>
108             <plugins>
109                 <plugin>
110                     <artifactId>maven-compiler-plugin</artifactId>
111                     <version>3.8.1</version>
112                     <configuration>
113                         <source>${java.version}</source>
114                         <target>${java.version}</target>
115                     </configuration>
116                 </plugin>                <!--This plugin's configuration is used to store Eclipse m2e settings
117                     only. It has no influence on the Maven build itself. -->
118                 <plugin>
119                     <groupId>org.eclipse.m2e</groupId>
120                     <artifactId>lifecycle-mapping</artifactId>
121                     <version>1.0.0</version>
122                     <configuration>
123                         <lifecycleMappingMetadata>
124                             <pluginExecutions>
125                                 <pluginExecution>
126                                     <pluginExecutionFilter>
127                                         <groupId>org.codehaus.gmaven</groupId>
128                                         <artifactId>groovy-maven-plugin</artifactId>
129                                         <versionRange>[2.0,)</versionRange>
130                                         <goals>
131                                             <goal>execute</goal>
132                                         </goals>
133                                     </pluginExecutionFilter>
134                                     <action>
135                                         <execute />
136                                     </action>
137                                 </pluginExecution>
138                                 <pluginExecution>
139                                     <pluginExecutionFilter>
140                                         <groupId>org.apache.maven.plugins</groupId>
141                                         <artifactId>maven-checkstyle-plugin</artifactId>
142                                         <versionRange>[3.0.0,)</versionRange>
143                                         <goals>
144                                             <goal>check</goal>
145                                         </goals>
146                                     </pluginExecutionFilter>
147                                     <action>
148                                         <execute />
149                                     </action>
150                                 </pluginExecution>
151                                 <pluginExecution>
152                                     <pluginExecutionFilter>
153                                         <groupId>org.apache.maven.plugins</groupId>
154                                         <artifactId>maven-dependency-plugin</artifactId>
155                                         <versionRange>[2.10,)</versionRange>
156                                         <goals>
157                                             <goal>copy-dependencies</goal>
158                                         </goals>
159                                     </pluginExecutionFilter>
160                                     <action>
161                                         <execute />
162                                     </action>
163                                 </pluginExecution>
164                                 <pluginExecution>
165                                     <pluginExecutionFilter>
166                                         <groupId>org.codehaus.gmavenplus</groupId>
167                                         <artifactId>gmavenplus-plugin</artifactId>
168                                         <versionRange>[1.6.2,)</versionRange>
169                                         <goals>
170                                             <goal>execute</goal>
171                                         </goals>
172                                     </pluginExecutionFilter>
173                                     <action>
174                                         <execute />
175                                     </action>
176                                 </pluginExecution>
177                             </pluginExecutions>
178                         </lifecycleMappingMetadata>
179                     </configuration>
180                 </plugin>
181             </plugins>
182         </pluginManagement>
183     </build>
184 </project>