-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpom.xml
56 lines (47 loc) · 1.63 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
<?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.mapr.db.examples</groupId>
<artifactId>mapr-db-getting-started</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>ojai-examples</module>
<module>drill-examples</module>
<module>spark-examples</module>
</modules>
<name>Getting Started with MapR-DB 6.1</name>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<repositories>
<repository>
<id>mapr-releases</id>
<url>http://repository.mapr.com/maven/</url>
</repository>
</repositories>
<properties>
<log4j.version>1.2.17</log4j.version>
<scala.version>2.11.5</scala.version>
<mapr.library.version>6.1.0-mapr</mapr.library.version>
<drill.version>1.14.0-mapr</drill.version>
<ojai.version>3.0-mapr-1808</ojai.version>
<spark.version>2.3.1-mapr-1808-r1</spark.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>