-
Notifications
You must be signed in to change notification settings - Fork 17
/
pom.xml
47 lines (47 loc) · 1.62 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
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.ellitron.ldbcsnbimpls</groupId>
<artifactId>ldbc-snb-impls</artifactId>
<packaging>pom</packaging>
<version>0.1.0</version>
<name>LDBC SNB Workload Implementations</name>
<url>https://github.com/ellitron/ldbc-snb-impls</url>
<description>
A collection of workload implementations for the LDBC SNB benchmark driver
(see https://github.com/ldbc/ldbc_driver).
</description>
<modules>
<module>snb-interactive-core</module>
<module>snb-interactive-tools</module>
<module>snb-interactive-neo4j</module>
<module>snb-interactive-arangodb</module>
<module>snb-interactive-nop</module>
<module>snb-interactive-titan</module>
<module>snb-interactive-torc</module>
<module>snb-interactive-torcdb2</module>
</modules>
<dependencies>
<dependency>
<groupId>com.ldbc.driver</groupId>
<artifactId>jeeves</artifactId>
<version>0.3.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
</project>