-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
94 lines (72 loc) · 2.71 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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>tn.lipsic</groupId>
<artifactId>babel</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<name>Big Data Decisional Benchmark</name>
<developers>
<developer>
<id>mehdibn</id>
<name>Mohamed Mehdi Ben Aissa</name>
<email>[email protected]</email>
</developer>
<developer>
<id>liliasfaxi</id>
<name>Lilia Sfaxi</name>
<email>[email protected]</email>
</developer>
</developers>
<properties>
<log4j.version>2.3</log4j.version>
<kafka.version>0.11.0.1</kafka.version>
<junit.version>4.11</junit.version>
</properties>
<dependencyManagement>
<dependencies>
<!-- LOGGING-->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.version}</version>
</dependency>
<!-- TESTS-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!-- KAFKA -->
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.12</artifactId>
<version>${kafka.version}</version>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.12</artifactId>
<version>${kafka.version}</version>
<classifier>test</classifier>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>${kafka.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>benchmark-common</module>
<module>benchmark-integration</module>
<module>benchmark-data-generation</module>
<module>benchmark-examples</module>
</modules>
</project>