79 lines
2.6 KiB
XML
79 lines
2.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ Copyright (c) 2016 Uber Technologies, Inc. (hoodie-dev-group@uber.com)
|
|
~
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
~ you may not use this file except in compliance with the License.
|
|
~ You may obtain a copy of the License at
|
|
~
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
~
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
~ See the License for the specific language governing permissions and
|
|
~ limitations under the License.
|
|
-->
|
|
|
|
<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>
|
|
<artifactId>hoodie</artifactId>
|
|
<groupId>com.uber.hoodie</groupId>
|
|
<version>0.4.5-SNAPSHOT</version>
|
|
<relativePath>../../../pom.xml</relativePath>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>hoodie-hadoop-docker</artifactId>
|
|
<packaging>pom</packaging>
|
|
<modules>
|
|
<module>base</module>
|
|
<module>namenode</module>
|
|
<module>datanode</module>
|
|
<module>historyserver</module>
|
|
<module>hive_base</module>
|
|
<module>spark_base</module>
|
|
<module>sparkmaster</module>
|
|
<module>sparkworker</module>
|
|
<module>sparkadhoc</module>
|
|
</modules>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.uber.hoodie</groupId>
|
|
<artifactId>hoodie-spark-bundle</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<properties>
|
|
<skipITs>false</skipITs>
|
|
<docker.build.skip>true</docker.build.skip>
|
|
<docker.spark.version>2.3.1</docker.spark.version>
|
|
<docker.hive.version>2.3.3</docker.hive.version>
|
|
<docker.hadoop.version>2.8.4</docker.hadoop.version>
|
|
<dockerfile.maven.version>1.4.3</dockerfile.maven.version>
|
|
<checkstyle.skip>true</checkstyle.skip>
|
|
</properties>
|
|
|
|
<build>
|
|
<extensions>
|
|
<extension>
|
|
<groupId>com.spotify</groupId>
|
|
<artifactId>dockerfile-maven-extension</artifactId>
|
|
<version>${dockerfile.maven.version}</version>
|
|
</extension>
|
|
</extensions>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.spotify</groupId>
|
|
<artifactId>dockerfile-maven-plugin</artifactId>
|
|
<version>${dockerfile.maven.version}</version>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|