> # install packages for Ubuntu (it not already installed) > $ sudo apt-get install mvn subversion openjdk-7-jdk
In my experience, the Maven that comes with Ubuntu is quite old. If it works with the LT build, that's great, but in general, I found it a good idea to always fetch the latest Maven directly from their website. > I'm not very familiar with Maven, but why does it need to do > so much work when everything is already built? > For example, running… The build should be faster if you run "mvn compile". Without having had a look at the build, I would expect at least two things to cause: 1) Maven (like ant) is a Java application and it takes a moment to fire up the JVM. "make" is a native application. 2) The "package" goal always runs the full packaging (building of ZIPs and JARs from the compiled sources). So even if the compile is up-to-date, doing the packaging takes a moment. If further plugins, e.g. JavaDoc, have been activated during normal builds, they may further slow down the build. Cheers, -- Richard ------------------------------------------------------------------------------ Free Next-Gen Firewall Hardware Offer Buy your Sophos next-gen firewall before the end March 2013 and get the hardware for free! Learn more. http://p.sf.net/sfu/sophos-d2d-feb _______________________________________________ Languagetool-devel mailing list Languagetool-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/languagetool-devel