Created
October 29, 2012 10:35
-
-
Save ivv-private/3972879 to your computer and use it in GitHub Desktop.
blog-emacs-java-m2jdee
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find ~/projects/ \( -name pom.xml -print \) | \ | |
sed 's/pom.xml//' | sort | \ | |
awk 'BEGIN {P="doh"} {if (index($0, P)==0){P=$0; print P "pom.xml"}}' | \ | |
xargs -P1 -n1 \ | |
$M2_HOME/bin/mvn install jdee:jdee -DskipTests=true -q -f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment