forked from tinfoiled/leveldb
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
107 lines (93 loc) · 3.81 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?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>
<parent>
<groupId>io.airlift</groupId>
<artifactId>airbase</artifactId>
<version>77</version>
</parent>
<groupId>io.github._0x9fff00.leveldb</groupId>
<artifactId>leveldb-project</artifactId>
<version>0.10</version>
<packaging>pom</packaging>
<description>Port of LevelDB to Java</description>
<url>http://github.com/dain/leveldb</url>
<modules>
<module>leveldb-api</module>
<module>leveldb</module>
</modules>
<inceptionYear>2011</inceptionYear>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>dain</id>
<name>Dain Sundstrom</name>
<email>[email protected]</email>
</developer>
<developer>
<id>chirino</id>
<name>Hiram Chirino</name>
<email>[email protected]</email>
<url>http://hiramchirino.com</url>
<timezone>-5</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/0x9fff00/leveldb.git</connection>
<developerConnection>scm:git:[email protected]:0x9fff00/leveldb.git</developerConnection>
<url>http://github.com/0x9fff00/leveldb/tree/master</url>
</scm>
<properties>
<air.check.skip-spotbugs>true</air.check.skip-spotbugs>
<air.check.skip-pmd>true</air.check.skip-pmd>
<air.check.skip-jacoco>true</air.check.skip-jacoco>
<air.check.skip-checkstyle>${air.check.skip-basic}</air.check.skip-checkstyle>
<air.check.fail-checkstyle>${air.check.fail-basic}</air.check.fail-checkstyle>
<air.javadoc.lint>-missing</air.javadoc.lint>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.github._0x9fff00.leveldb</groupId>
<artifactId>leveldb-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github._0x9fff00.leveldb</groupId>
<artifactId>leveldb</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.17</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<skip>${air.check.skip-checkstyle}</skip>
<failOnViolation>${air.check.fail-checkstyle}</failOnViolation>
<consoleOutput>true</consoleOutput>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<configLocation>${air.main.basedir}/src/checkstyle/checks.xml</configLocation>
<excludes>**/com/facebook/presto/operator/PagesIndexOrdering.java</excludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>