Skip to content

Commit

Permalink
Add hadoop mr2 profile
Browse files Browse the repository at this point in the history
* Added mr2 hadoop3.2 for following files:
	* autogen POM
	* sparkbench common POM
	* sparkbench micro POM

Signed-off-by: Luis Ponce <[email protected]>
  • Loading branch information
luisfponce committed Jun 5, 2019
1 parent 0525247 commit 73cb7e4
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 1 deletion.
15 changes: 14 additions & 1 deletion autogen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,20 @@
<version>${hadoop.mr2.version}</version>
</dependency>
</dependencies>

<profiles>
<profile>
<id>hadoop3.2</id>
<properties>
<hadoop.mr2.version>3.2.0</hadoop.mr2.version>
</properties>
<activation>
<property>
<name>hadoop</name>
<value>3.2</value>
</property>
</activation>
</profile>
</profiles>
<build>
<plugins>
<plugin>
Expand Down
14 changes: 14 additions & 0 deletions sparkbench/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,18 @@
<version>${hadoop.mr2.version}</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>hadoop3.2</id>
<properties>
<hadoop.mr2.version>3.2.0</hadoop.mr2.version>
</properties>
<activation>
<property>
<name>hadoop</name>
<value>3.2</value>
</property>
</activation>
</profile>
</profiles>
</project>
14 changes: 14 additions & 0 deletions sparkbench/micro/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,18 @@
</exclusions>
</dependency>
</dependencies>
<profiles>
<profile>
<id>hadoop3.2</id>
<properties>
<hadoop.mr2.version>3.2.0</hadoop.mr2.version>
</properties>
<activation>
<property>
<name>hadoop</name>
<value>3.2</value>
</property>
</activation>
</profile>
</profiles>
</project>

0 comments on commit 73cb7e4

Please sign in to comment.