Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why mrunit 1.1.0 jar is not available in Maven central repository

I tried to test my MapReduce 2 job with mrunit in a maven project. I searched from Maven central repo and found the result: http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.apache.mrunit%22%20AND%20a%3A%22mrunit%22

In the link above, the latest mrunit 1.1.0 has hadoop1.jar and hadoop2.jar rather than one jar link. Just due to this reason, when I tried to add the corresponding dependencies

<dependency>
  <groupId>org.apache.mrunit</groupId>
  <artifactId>mrunit</artifactId>
  <version>1.1.0</version>
</dependency>

to pom.xml and run mvn package, I got the following compilation error: Could not find artifact org.apache.mrunit:mrunit:jar:1.1.0 in central (https://repo.maven.apache.org/maven2 ...

Could anyone help on how to fix this problem? Thanks in advance

like image 536
Rui Avatar asked Jan 05 '23 17:01

Rui


1 Answers

After a few hours' inefficient research by myself, got the answer from my Colleague: this is solved by the maven's classifier tag - http://maven.apache.org/plugins/maven-deploy-plugin/examples/deploying-with-classifiers.html

so added <classifier>hadoop2</classifier> inside the dependency element

like image 103
Rui Avatar answered Apr 26 '23 19:04

Rui