I have a small question about IntelliJ IDEA 11. I just imported a project from subversion – its a maven project. But I have a problem in maven library...
  • May 25, 2022
  • 0 Comments
How do I get my project’s runtime dependencies copied into the target/lib folder? As it is right now, after mvn clean install the target folder contains only my project’s...
  • May 19, 2022
  • 0 Comments
When I run maven install on my multi module maven project I always get the following output: [WARNING] File encoding has not been set, using platform encoding UTF-8, i.e....
  • May 5, 2022
  • 0 Comments
I’m trying to install maven through the terminal by following these instructions. So far I got this: export M2_HOME=/user/apple/apache-maven-3.0.3 export M2=$M2_HOME/bin export PATH=$M2:$PATH export JAVA_HOME=/usr/java/jdk1.6.0_22 Where do you go...
  • April 29, 2022
  • 0 Comments
I know you can run all the tests in a certain class using: mvn test -Dtest=classname But I want to run an individual method and -Dtest=classname.methodname doesn’t seem to...
  • April 29, 2022
  • 0 Comments