i found another workaround here http://code.google.com/p/gwt-maven/issues/detail?id=88
(i have problem with changing pom to fit a specific os)
in short: make path to local repository as short as possible.
"
Comment 40 by gaurav.a...@gmail.com, Mar 23, 2009
One of the fix to the problem of "GWT compilation fails due to- The input line is
too long." is as follows:
1) Change m2(maven) repository.
You might have your maven repository at:
C:\Documents and Settings\MahcineNameABC.m2
Copy settings.xml file from folder "apache-maven-2.0.8\apache-maven-2.0.8\conf"
into C:\Documents and Settings\MahcineNameABC.m2
In settings.xml, change the tag as
M:
Now your m2 home is a virtual M drive.
2) Create a repository folder as "D:\maven-2.0.8\repository"
3) Cut/Copy all the files/folders from "C:\Documents and Settings\MahcineNameABC.m2
\repository"
to "D:\maven-2.0.8\repository"
4) Map local drive: open command prompt and execute (to create the virtual drive):
subst M: D:\maven-2.0.8\repository
Now a virtual M drive will point to your repository.
5) Set environment variable M2_REPO with value M:
6) To enable long inputs, on command prompt execute:
cmd /e:32768
This would fix the problem of long inputs due to very long entries in classpath
variables, atleast in Win XP SP2. The inputs are combined and tested from comment#22
and #7.
Hope it helps!
-Gaurav Ashwin"
this should help in most cases (and 'til the end of project - at least in my case)
--- maven-surefire-plugin:2.5:test (default-test)– Kayser Nov 18 '11 at 10:46mvn dependency:build-classpath | wc -con a reasonably large project it says 10290... What is your output ofmvn dependency:build-classpath | wc -c? Who does add stuff to your classpath, maven or do you add it yourself? – Christian Uhl Nov 18 '11 at 10:48