-
Notifications
You must be signed in to change notification settings - Fork 10
/
pom.xml
74 lines (61 loc) · 2.33 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
<?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>69</version>
</parent>
<artifactId>command</artifactId>
<version>0.4-SNAPSHOT</version>
<packaging>jar</packaging>
<name>command</name>
<description>Convenience library for executing external processes</description>
<url>https://github.com/airlift/command</url>
<scm>
<connection>scm:git:git://github.com/airlift/command.git</connection>
<developerConnection>scm:git:[email protected]:airlift/command.git</developerConnection>
<url>https://github.com/airlift/command</url>
<tag>HEAD</tag>
</scm>
<inceptionYear>2013</inceptionYear>
<properties>
<air.check.skip-pmd>true</air.check.skip-pmd>
<air.check.skip-spotbugs>true</air.check.skip-spotbugs>
<air.check.skip-jacoco>true</air.check.skip-jacoco>
<dep.airlift.version>0.150</dep.airlift.version>
</properties>
<dependencies>
<dependency>
<groupId>io.airlift</groupId>
<artifactId>units</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</dependency>
<!-- for testing -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.airlift</groupId>
<artifactId>testing</artifactId>
<version>${dep.airlift.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.airlift</groupId>
<artifactId>concurrent</artifactId>
<version>${dep.airlift.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>