-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpom.xml
34 lines (32 loc) · 1.41 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
<?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>com.criteo.babar</groupId>
<artifactId>babar</artifactId>
<packaging>pom</packaging>
<version>0.2.0-SNAPSHOT</version>
<modules>
<module>babar-agent</module>
<module>babar-report</module>
<module>babar-processor</module>
</modules>
<properties>
<guava.version>19.0</guava.version>
<scala.version>2.12.4</scala.version>
<scala.major.version>2.12</scala.major.version>
<scala.tools.version>2.12</scala.tools.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<encoding>UTF-8</encoding>
<junit.version>4.12</junit.version>
<specs2.version>2.4.17</specs2.version>
<scalatest.version>3.2.0-SNAP5</scalatest.version>
<hadoop.version>2.6.5</hadoop.version>
<scalaz-stream.version>0.8.6a</scalaz-stream.version>
<scala-parser-combinators.version>1.0.6</scala-parser-combinators.version>
<commons-lang3.version>3.7</commons-lang3.version>
<scallop.version>3.1.1</scallop.version>
</properties>
</project>