Getting Involved
Want to code on the Mule Galaxy project? Try surfing our issue tracker for open issues or features that need to be implemented, take ownership of an issue, and try to fix it.
Contacting us
Reporting Bugs
Please raise a new issue in our issue tracker. You'll need to register with it first, but this is quick and painless.
If you can create a JUnit test case, your issue is more likely to be resolved quicker (take a look at some of the existing unit tests cases).
Submitting Patches
We gladly accept patches if you can find ways to improve, tune, or fix Galaxy in some way.
You can use the svn diff command:
svn diff Main.java > Main.java.patch.txt
Some IDEs can create patches very easily. Just make sure a unidiff format is supported. If your IDE doesn't allow you to create patches, or if you just prefer command line, use the following to create the patch on Linux:
diff -u Main.java.orig Main.java > Main.java.patch.txt
The patch file should then be added to a JIRA Issue as an attachment. Select Patch Submission as the issue type to help us better categorize it.