I'm using IDEA IC 10.5.1 to work on Mahout and building it using maven. My problem is that all Hadoop configuration is read from files within hadoop jar file in the local maven repository. I got that when I turned off quiet mode in the Configuration class:
Jul 3, 2011 2:45:32 PM org.apache.hadoop.conf.Configuration loadResource INFO: parsing jar:file:/home/sbos/.m2/repository/org/apache/hadoop/hadoop-core/0.20.203.0/hadoop-core-0.20.203.0.jar!/core-default.xml But actually I need configuration from my local Hadoop installation, so AFAIK I need to modify classpath to exclude these configs and include mine. How to do that?
