Jmeter upgrade to 3.2 using homebrew

I currently have jmeter 3.1 installed with homebrew, however would like to update to 3.2.

I tried brew upgrade jmeter

but it returns with an error

jmeter 3.1 is already installed

I have a job of downloading version 3.2 and then launching it by going to the folder, but I would like to have a homebrew version if possible if possible?

+3


source to share


1 answer


According to braumeister.org, the current homebrew version of JMeter is 3.1. This means that no one has updated it yet. You can

  • Wait for them to update.
  • As the FAQ explains, edit the jmeter formula yourself:


Simple brew edit <formula>

. You don't need to push the changes back to homebrew / core, just edit the formula as you see fit and brew install. As a bonus, the brew update will merge your changes with an upstream so you can still keep the formula in line with your personal changes!

  • Or copy jmeter.rb update to include 3.2 and see if they accept your change
+2


source







All Articles