EzDevInfo.com

streamparse

streamparse lets you run Python code against real-time streams of data with Apache Storm.

How to upgrade a package in a local Maven repository

I am using a system which runs Python code on Apache Storm using Streamparse.

I have found a bug in the local code which can be solved by upgrading from Storm 0.9.2 to Storm 0.9.5, and I would like to upgrade my local Storm version.

Using:

ps -ef | grep storm | grep java | grep storm

I've found the following:

ubuntu   23791 23768  6 Aug17 ?        00:53:03 java -classpath
...:/home/ubuntu/.m2/repository/org/apache/storm/storm-core/0.9.2-incubating/storm-core-0.9.2-incubating.jar:...

/home/ubuntu/.m2 is probably my local Maven repo. Any idea how to specifically upgrade storm-*-0.9.2-* packages on that repo to the 0.9.5 version?


Source: (StackOverflow)