Skip to content

Instantly share code, notes, and snippets.

@akr4
Created April 7, 2012 00:11
Show Gist options
  • Save akr4/2324183 to your computer and use it in GitHub Desktop.
Save akr4/2324183 to your computer and use it in GitHub Desktop.
カレントディレクトリ以下で mvn clean する
import scala.sys.process._
for (pom <- ("find . -name pom.xml" !!) split "\n") {
"mvn -f " + pom + " clean" run
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment