e473afd5af9fcc2990648468a84b4dd1ede8665d
[honeycomb.git] / infra / minimal-distribution-test / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2017 Cisco and/or its affiliates.
4   ~
5   ~ Licensed under the Apache License, Version 2.0 (the "License");
6   ~ you may not use this file except in compliance with the License.
7   ~ You may obtain a copy of the License at:
8   ~
9   ~     http://www.apache.org/licenses/LICENSE-2.0
10   ~
11   ~ Unless required by applicable law or agreed to in writing, software
12   ~ distributed under the License is distributed on an "AS IS" BASIS,
13   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   ~ See the License for the specific language governing permissions and
15   ~ limitations under the License.
16   -->
17
18 <project xmlns="http://maven.apache.org/POM/4.0.0"
19          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21     <parent>
22         <artifactId>impl-parent</artifactId>
23         <groupId>io.fd.honeycomb.common</groupId>
24         <version>1.18.01-SNAPSHOT</version>
25         <relativePath>../../common/impl-parent</relativePath>
26     </parent>
27     <modelVersion>4.0.0</modelVersion>
28
29     <groupId>io.fd.honeycomb</groupId>
30     <artifactId>minimal-distribution-test</artifactId>
31     <version>1.18.01-SNAPSHOT</version>
32
33     <dependencies>
34         <dependency>
35             <groupId>io.fd.honeycomb</groupId>
36             <artifactId>minimal-distribution</artifactId>
37             <version>${project.version}</version>
38             <scope>test</scope>
39         </dependency>
40
41         <!-- Utilities -->
42         <dependency>
43             <groupId>com.google.guava</groupId>
44             <artifactId>guava</artifactId>
45             <scope>test</scope>
46         </dependency>
47
48         <dependency>
49             <groupId>org.slf4j</groupId>
50             <artifactId>slf4j-api</artifactId>
51             <version>1.7.25</version>
52             <scope>test</scope>
53         </dependency>
54
55         <!-- DI-->
56         <dependency>
57             <groupId>com.google.inject</groupId>
58             <artifactId>guice</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>net.jmob</groupId>
63             <artifactId>guice.conf</artifactId>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>com.google.inject.extensions</groupId>
68             <artifactId>guice-multibindings</artifactId>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>junit</groupId>
73             <artifactId>junit</artifactId>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>com.mashape.unirest</groupId>
78             <artifactId>unirest-java</artifactId>
79             <version>1.4.9</version>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>com.jcraft</groupId>
84             <artifactId>jsch</artifactId>
85             <version>0.1.54</version>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.hamcrest</groupId>
90             <artifactId>hamcrest-all</artifactId>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.mockito</groupId>
95             <artifactId>mockito-core</artifactId>
96             <scope>test</scope>
97         </dependency>
98     </dependencies>
99
100     <build>
101         <plugins>
102             <plugin>
103                 <groupId>org.jacoco</groupId>
104                 <artifactId>jacoco-maven-plugin</artifactId>
105                 <configuration>
106                     <!-- Include module's tests in IT coverage report -->
107                     <destFile>../../common/honeycomb-parent/target/jacoco-it.exec</destFile>
108                 </configuration>
109             </plugin>
110         </plugins>
111     </build>
112 </project>