Which dependency to add to POM.xml to give a mule client call from camunda

I am posting the java code in camunda

public class ProcessRequestDelegate implements JavaDelegate {

private final static Logger LOGGER = Logger.getLogger("LOAN-REQUESTS");

public void execute(DelegateExecution execution) throws Exception {
	LOGGER.info("Processing request by '"
			+ execution.getVariable("customerId"));

	// make rest call to mule	
	MuleClient client = new MuleClient(true);
	MuleMessage result = client.send("http://localhost:8082/mule/", "Message Payload", null);
	LOGGER.info("Result from mule is: " + result.getPayloadAsString());
}

}
@Niall
@aravindhrs

@mahavir Below dependency might help you.

<dependency>
    <groupId>org.mule.modules</groupId>
    <artifactId>mule-module-client</artifactId>
    <version>3.9.0</version>
    <scope>test</scope>
</dependency>

Additionally check this post for passing MuleContext into Muleclient to establish the connection to remote mule server.

Thank for reply
@aravindhrs
I am trying it out