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
(load "jde-autoload") | |
(setq jde-check-version-flag nil) | |
(setq jde-compile-option-directory | |
(concat user-emacs-directory "tmp")) | |
(require 'gud) | |
(defun java-my-minor () | |
(progn | |
(gtags-mode t) | |
(glasses-mode t) |
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 |
NewerOlder