aa2a48b19b7fc93a80b1166c01dbd732515e32c6
[honeycomb.git] / infra / translate-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2016 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 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19     <parent>
20         <groupId>io.fd.honeycomb.common</groupId>
21         <artifactId>api-parent</artifactId>
22         <version>1.18.01-SNAPSHOT</version>
23         <relativePath>../../common/api-parent</relativePath>
24     </parent>
25
26     <modelVersion>4.0.0</modelVersion>
27     <groupId>io.fd.honeycomb</groupId>
28     <artifactId>translate-impl</artifactId>
29     <name>${project.artifactId}</name>
30     <version>1.18.01-SNAPSHOT</version>
31     <packaging>bundle</packaging>
32
33     <dependencies>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>translate-api</artifactId>
37             <version>${project.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>translate-spi</artifactId>
42             <version>${project.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>translate-utils</artifactId>
47             <version>${project.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>translate-utils</artifactId>
52             <version>${project.version}</version>
53             <type>test-jar</type>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>io.fd.honeycomb.it</groupId>
58             <artifactId>honeycomb-test-model</artifactId>
59             <version>${project.version}</version>
60             <scope>test</scope>
61         </dependency>
62
63         <dependency>
64             <groupId>junit</groupId>
65             <artifactId>junit</artifactId>
66             <scope>test</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.mockito</groupId>
70             <artifactId>mockito-core</artifactId>
71             <scope>test</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.hamcrest</groupId>
75             <artifactId>hamcrest-all</artifactId>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.slf4j</groupId>
80             <artifactId>slf4j-simple</artifactId>
81             <version>1.7.25</version>
82             <scope>test</scope>
83         </dependency>
84     </dependencies>
85
86     <build>
87         <plugins>
88             <plugin>
89                 <artifactId>maven-jar-plugin</artifactId>
90             </plugin>
91             <plugin>
92                 <groupId>org.apache.felix</groupId>
93                 <artifactId>maven-bundle-plugin</artifactId>
94                 <extensions>true</extensions>
95                 <configuration>
96                     <instructions>
97                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
98                         <Export-Package>
99                             io.fd.honeycomb.translate.impl.*
100                         </Export-Package>
101                     </instructions>
102                 </configuration>
103             </plugin>
104         </plugins>
105     </build>
106
107 </project>