forked from trinodb/tpch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
54 lines (46 loc) · 1.69 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
<?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>
<groupId>io.airlift.tpch</groupId>
<artifactId>tpch</artifactId>
<version>0.10-SNAPSHOT</version>
<packaging>jar</packaging>
<name>tpch</name>
<description>Port of TPC-H dbgen to Java</description>
<url>https://github.com/airlift/tpch</url>
<parent>
<groupId>io.airlift</groupId>
<artifactId>airbase</artifactId>
<version>54</version>
</parent>
<inceptionYear>2014</inceptionYear>
<properties>
<air.check.skip-extended>true</air.check.skip-extended>
<air.check.skip-license>false</air.check.skip-license>
</properties>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<!-- for testing -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration combine.children="append">
<argLine>-Xmx2g -Xms2g</argLine>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>