forked from airlift/slice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
79 lines (68 loc) · 2.8 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<artifactId>slice</artifactId>
<version>0.8-SNAPSHOT</version>
<packaging>jar</packaging>
<name>slice</name>
<description>Library for efficiently working with heap and off-heap memory</description>
<url>https://github.com/airlift/slice</url>
<parent>
<groupId>io.airlift</groupId>
<artifactId>airbase</artifactId>
<version>21</version>
</parent>
<inceptionYear>2012</inceptionYear>
<properties>
<air.check.skip-extended>true</air.check.skip-extended>
<air.check.skip-license>false</air.check.skip-license>
<dep.jmh.version>0.9.4</dep.jmh.version>
</properties>
<dependencies>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>annotations</artifactId>
<optional>true</optional>
</dependency>
<!-- for testing -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>${dep.jmh.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>${dep.jmh.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<excludes combine.children="append">
<exclude>src/main/java/io/airlift/slice/Preconditions.java</exclude>
<exclude>src/main/java/io/airlift/slice/CountingInputStream.java</exclude>
<exclude>src/main/java/io/airlift/slice/CountingOutputStream.java</exclude>
<exclude>src/main/java/io/airlift/slice/LittleEndianDataInputStream.java</exclude>
<exclude>src/main/java/io/airlift/slice/LittleEndianDataOutputStream.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>