Reputation: 153
I have came across this bug when using the magneto connector, I have fixed it in the gitHub repository(but I don't think it was merged yet) and works perfect in my mule project, but when using the magneto connector in a maven mule project the error shows up again? what's wrong? what do I need to update?
Upvotes: 0
Views: 44
Reputation: 11606
With Maven you will need to install it into your local repository or host it in your own Maven repo. You can simply install it locally by running mvn install
in a command line. You probably should change the version in the pom of the connector and then reference the new version in the dependency section of your pom in the Mule application using the connector
Upvotes: 1