class Pmd < Formula desc "Source code analyzer for Java, JavaScript, and more" homepage "https://pmd.github.io" url "https://github.com/pmd/pmd/releases/download/pmd_releases/5.8.1/pmd-src-5.8.1.zip" sha256 "d7b1c86ce3d02a78d17b07a0090ea92c437e3211bb86cd9d17ac7787397164f8" bottle do cellar :any_skip_relocation sha256 "8f8c7ea946c71c4f53f99a7fb0ac24a5735cd90c0f57a19bcb42cfdbdcb18afe" => :high_sierra sha256 "d0b7be23c380d9303cb4d100d66617ad39faa38a37234bb9b4cf812c8e49880b" => :sierra sha256 "6c8c3fab6a50acb2e092038e764147bd09a161616419d723dd716bbfd9a1c9d4" => :el_capitan sha256 "d32b9faf151bcd058caf7601f1016ec558d1b19e1d0f51bed2a5ec96cd78cae9" => :yosemite end depends_on :java => "1.8+" depends_on "maven" => :build def install java_user_home = buildpath/"java_user_home" ENV["_JAVA_OPTIONS"] = "-Duser.home=#{buildpath}/java_user_home" java_cache_repo = HOMEBREW_CACHE/"java_cache/.m2/repository" java_cache_repo.mkpath (java_user_home/".m2").install_symlink java_cache_repo (java_user_home/".m2/toolchains.xml").write <<~EOS jdk #{ENV["JAVA_HOME"][/((\d\.?)+)\.\d/, 1]} #{ENV["JAVA_HOME"]} jdk 1.7 #{ENV["JAVA_HOME"]} EOS system "mvn", "clean", "package" doc.install "LICENSE", "NOTICE", "README.md" # The mvn package target produces a .zip with all the jars needed for PMD safe_system "unzip", buildpath/"pmd-dist/target/pmd-bin-#{version}.zip" libexec.install "pmd-bin-#{version}/bin", "pmd-bin-#{version}/lib" bin.install_symlink "#{libexec}/bin/run.sh" => "pmd" inreplace "#{libexec}/bin/run.sh", "${script_dir}/../lib", "#{libexec}/lib" end def caveats; <<~EOS Run with `pmd` (instead of `run.sh` as described in the documentation). EOS end test do (testpath/"java/testClass.java").write <<~EOS public class BrewTestClass { // dummy constant public String SOME_CONST = "foo"; public boolean doTest () { return true; } } EOS system "#{bin}/pmd", "pmd", "-d", "#{testpath}/java", "-R", "rulesets/java/basic.xml", "-f", "textcolor", "-l", "java" end end