Maven – External Dependencies (Adding external/custom jars into Maven project)

Maven automatically manages project dependencies using the concept of maven repositories. In the case when you have a custom or external jar file that is required by the project and which is not available in any of the remote  or central repositories, the Maven-External Dependencies concept becomes useful. In the following video I have explained […]

How to deploy a proxy service developed using WSO2 developer studio on the WSO2 ESB

In this video I have shown how to deploy and test a proxy service developed using WSO2 developer studio in WSO2 ESB. The proxy service I have used is from the tutorial at http://wso2.com/library/articles/2013/12/esb-connectors-in-action-enterprise-integration/ . The proxy service is deployed as a car file in the WSO2 ESB. I regret that the audio of the […]

JColorChooser: hide all default panels and show RGB and Swatches panels only

If you want to delete panels you can follow this approach Here I’m removing all the other panels except Swatches and RGB, AbstractColorChooserPanel[] panels=colorChooser.getChooserPanels(); for(AbstractColorChooserPanel p:panels){ String displayName=p.getDisplayName(); switch (displayName) { case “HSV”: colorChooser.removeChooserPanel(p); break; case “HSL”: colorChooser.removeChooserPanel(p); break; case “CMYK”: colorChooser.removeChooserPanel(p); break; }