-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpom.xml
54 lines (48 loc) · 1.75 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
<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">
<parent>
<groupId>com.github.vlsi.calcite</groupId>
<artifactId>parent</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>./parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>test-dataset</artifactId>
<name>test-dataset</name>
<description>Data set to test database engines</description>
<packaging>pom</packaging>
<url>http://github.com/vlsi/test-dataset</url>
<inceptionYear>2015</inceptionYear>
<organization>
<name>Vladimir Sitnikov</name>
<url>http://github.com/vlsi</url>
</organization>
<mailingLists>
<mailingList>
<name>Apache Calcite developers list</name>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
<post>[email protected]</post>
<archive>http://mail-archives.apache.org/mod_mbox/calcite-dev</archive>
</mailingList>
</mailingLists>
<scm>
<connection>scm:git:git://github.com/vlsi/test-dataset.git</connection>
<developerConnection>scm:git:[email protected]:vlsi/test-dataset.git</developerConnection>
<url>scm:git:git://github.com/vlsi/test-dataset.git</url>
<tag>HEAD</tag>
</scm>
<modules>
<module>geode-standalone-cluster</module>
<module>parent</module>
<module>foodmart-dataset</module>
<module>zips</module>
<module>vm</module>
<module>h2</module>
<module>hsqldb</module>
<module>mysql</module>
<module>postgresql</module>
<module>twissandra</module>
</modules>
</project>