Re: Can't compile my classes with maven.

2015-02-02 Thread Adrien Rivard
I would add : 1) maven-eclipse-plugin is not to be used anymore. If you need it in eclipse don't use any maven plugin but only http://eclipse.org/m2e/ 2) exec-maven-plugin is not for compilation, it's for execution inside a maven build (comment says otherwise). You seem to have mixing it with mav

Re: Can't compile my classes with maven.

2015-02-02 Thread Karl Heinz Marbaise
Hi, first rule in Maven keep the conventions[1]...meaning convention over configuration: source code: src/main/java resources for production code: src/main/resources Tests: src/test/java resources for tests: src/test/resources move your files to the correct location etc. Remove the f

Can't compile my classes with maven.

2015-02-02 Thread xeonmailinglist
Hi, I can’t compile my java class using my |pom.xml|, and I can’t find the problem. Can anyone help me to point what it is wrong? Directory structure |hadoop-wordcount-coc$ tree . ├── output.txt ├── pom.xml └── src └── org └── apache └── hadoop └── mapr