Import atomix/{storage,utils}
[controller.git] / third-party / atomix / utils / pom.xml
1 <!--
2   ~ Copyright 2017-present Open Networking Foundation
3   ~
4   ~ Licensed under the Apache License, Version 2.0 (the "License");
5   ~ you may not use this file except in compliance with the License.
6   ~ You may obtain a copy of the License at
7   ~
8   ~     http://www.apache.org/licenses/LICENSE-2.0
9   ~
10   ~ Unless required by applicable law or agreed to in writing, software
11   ~ distributed under the License is distributed on an "AS IS" BASIS,
12   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   ~ See the License for the specific language governing permissions and
14   ~ limitations under the License.
15   -->
16 <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">
17   <modelVersion>4.0.0</modelVersion>
18
19   <parent>
20     <groupId>io.atomix</groupId>
21     <artifactId>atomix-parent</artifactId>
22     <version>3.2.0-SNAPSHOT</version>
23   </parent>
24
25   <packaging>bundle</packaging>
26   <artifactId>atomix-utils</artifactId>
27   <name>Atomix Utilities</name>
28
29   <dependencies>
30     <dependency>
31       <groupId>com.google.guava</groupId>
32       <artifactId>guava</artifactId>
33       <version>${guava.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>org.apache.commons</groupId>
37       <artifactId>commons-lang3</artifactId>
38       <version>${commons.lang3.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>org.apache.commons</groupId>
42       <artifactId>commons-math3</artifactId>
43       <version>${commons.math3.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>com.esotericsoftware</groupId>
47       <artifactId>kryo</artifactId>
48       <version>${kryo.version}</version>
49     </dependency>
50     <dependency>
51       <groupId>com.typesafe</groupId>
52       <artifactId>config</artifactId>
53       <version>${config.version}</version>
54     </dependency>
55     <dependency>
56       <groupId>io.github.classgraph</groupId>
57       <artifactId>classgraph</artifactId>
58       <version>${classgraph.version}</version>
59     </dependency>
60   </dependencies>
61
62   <build>
63     <plugins>
64       <plugin>
65         <groupId>org.apache.felix</groupId>
66         <artifactId>maven-bundle-plugin</artifactId>
67         <extensions>true</extensions>
68         <configuration>
69           <instructions>
70             <Export-Package>
71               io.atomix.utils.*
72             </Export-Package>
73             <Import-Package>
74               sun.nio.ch;resolution:=optional,sun.misc;resolution:=optional,*
75             </Import-Package>
76           </instructions>
77         </configuration>
78       </plugin>
79     </plugins>
80   </build>
81 </project>