347fa32cecd929d282540be2798936c63d01232d
[transportpce.git] / tests / honeynode / 1.2.1 / minimal-distribution-core / 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>minimal-distribution-core</artifactId>
21     <name>${project.artifactId}</name>
22     <properties>
23         <commons-io.version>2.5</commons-io.version>
24         <osgi.core.version>5.0.0</osgi.core.version>
25         <!-- Core guice modules does not need any yang modules itself -->
26         <skip.module.list.generation>true</skip.module.list.generation>
27         <honeycomb.version>1.19.04</honeycomb.version>
28         <java.version>11</java.version>
29         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
30         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
31         <maven.javadoc.skip>true</maven.javadoc.skip>
32         <guice.version>4.2.2</guice.version>
33         <guice.config.version>1.4.1</guice.config.version>
34     </properties>
35     <dependencies>
36         <!-- DI -->
37         <dependency>
38             <groupId>com.google.inject</groupId>
39             <artifactId>guice</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>net.jmob</groupId>
43             <artifactId>guice.conf</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>com.google.inject.extensions</groupId>
47             <artifactId>guice-multibindings</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>io.fd.honeycomb</groupId>
51             <artifactId>binding-init</artifactId>
52             <version>${honeycomb.version}</version>
53         </dependency>
54         <!-- ODL -->
55         <dependency>
56             <groupId>org.opendaylight.yangtools</groupId>
57             <artifactId>yang-data-impl</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.controller</groupId>
61             <artifactId>sal-core-api</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.controller</groupId>
65             <artifactId>sal-broker-impl</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.controller</groupId>
69             <artifactId>sal-binding-broker-impl</artifactId>
70         </dependency>
71         <!-- OSGI Even tough not running in OSGI, dependency needs to be here since
72             some deprecated MD-SAL APIs rely on osgi core -->
73         <dependency>
74             <groupId>org.osgi</groupId>
75             <artifactId>org.osgi.core</artifactId>
76             <version>${osgi.core.version}</version>
77         </dependency>
78         <!-- Northbound -->
79         <dependency>
80             <groupId>io.fd.honeycomb.northbound</groupId>
81             <artifactId>common</artifactId>
82             <version>${honeycomb.version}</version>
83         </dependency>
84         <!-- HC -->
85         <dependency>
86             <groupId>io.fd.honeycomb</groupId>
87             <artifactId>cfg-init</artifactId>
88             <version>${honeycomb.version}</version>
89         </dependency>
90         <dependency>
91             <groupId>io.fd.honeycomb</groupId>
92             <artifactId>notification-api</artifactId>
93             <version>${honeycomb.version}</version>
94         </dependency>
95         <dependency>
96             <groupId>io.fd.honeycomb</groupId>
97             <artifactId>rpc-impl</artifactId>
98             <version>${honeycomb.version}</version>
99         </dependency>
100         <dependency>
101             <groupId>io.fd.honeycomb</groupId>
102             <artifactId>data-impl</artifactId>
103             <version>${honeycomb.version}</version>
104         </dependency>
105         <dependency>
106             <groupId>io.fd.honeycomb</groupId>
107             <artifactId>honeycomb-impl</artifactId>
108             <version>${honeycomb.version}</version>
109         </dependency>
110         <dependency>
111             <groupId>io.fd.honeycomb</groupId>
112             <artifactId>notification-impl</artifactId>
113             <version>${honeycomb.version}</version>
114         </dependency>
115         <!-- Utilities -->
116         <dependency>
117             <groupId>com.google.guava</groupId>
118             <artifactId>guava</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>commons-io</groupId>
122             <artifactId>commons-io</artifactId>
123             <version>${commons-io.version}</version>
124         </dependency>
125         <dependency>
126             <groupId>org.javassist</groupId>
127             <artifactId>javassist</artifactId>
128         </dependency>
129         <dependency>
130             <groupId>javax.activation</groupId>
131             <artifactId>activation</artifactId>
132             <version>1.1.1</version>
133         </dependency>
134     </dependencies>
135     <build>
136         <pluginManagement>
137             <plugins>
138                 <plugin>
139                     <artifactId>maven-compiler-plugin</artifactId>
140                     <version>3.8.1</version>
141                     <configuration>
142                         <source>${java.version}</source>
143                         <target>${java.version}</target>
144                     </configuration>
145                 </plugin>
146                 <!--This plugin's configuration is used to store Eclipse m2e settings
147                     only. It has no influence on the Maven build itself. -->
148                 <plugin>
149                     <groupId>org.eclipse.m2e</groupId>
150                     <artifactId>lifecycle-mapping</artifactId>
151                     <version>1.0.0</version>
152                     <configuration>
153                         <lifecycleMappingMetadata>
154                             <pluginExecutions>
155                                 <pluginExecution>
156                                     <pluginExecutionFilter>
157                                         <groupId>org.codehaus.gmaven</groupId>
158                                         <artifactId>groovy-maven-plugin</artifactId>
159                                         <versionRange>[2.0,)</versionRange>
160                                         <goals>
161                                             <goal>execute</goal>
162                                         </goals>
163                                     </pluginExecutionFilter>
164                                     <action>
165                                         <execute />
166                                     </action>
167                                 </pluginExecution>
168                                 <pluginExecution>
169                                     <pluginExecutionFilter>
170                                         <groupId>org.apache.maven.plugins</groupId>
171                                         <artifactId>maven-checkstyle-plugin</artifactId>
172                                         <versionRange>[3.0.0,)</versionRange>
173                                         <goals>
174                                             <goal>check</goal>
175                                         </goals>
176                                     </pluginExecutionFilter>
177                                     <action>
178                                         <execute />
179                                     </action>
180                                 </pluginExecution>
181                                 <pluginExecution>
182                                     <pluginExecutionFilter>
183                                         <groupId>org.apache.maven.plugins</groupId>
184                                         <artifactId>maven-dependency-plugin</artifactId>
185                                         <versionRange>[2.10,)</versionRange>
186                                         <goals>
187                                             <goal>copy-dependencies</goal>
188                                         </goals>
189                                     </pluginExecutionFilter>
190                                     <action>
191                                         <execute />
192                                     </action>
193                                 </pluginExecution>
194                                 <pluginExecution>
195                                     <pluginExecutionFilter>
196                                         <groupId>org.codehaus.gmavenplus</groupId>
197                                         <artifactId>gmavenplus-plugin</artifactId>
198                                         <versionRange>[1.6.2,)</versionRange>
199                                         <goals>
200                                             <goal>execute</goal>
201                                         </goals>
202                                     </pluginExecutionFilter>
203                                     <action>
204                                         <execute />
205                                     </action>
206                                 </pluginExecution>
207                             </pluginExecutions>
208                         </lifecycleMappingMetadata>
209                     </configuration>
210                 </plugin>
211             </plugins>
212         </pluginManagement>
213     </build>
214 </project>