Daniel's answer should help, but be aware that the output you get from Axis2 is very different from what you get from Axis so you will probably have to rewrite your integration somewhat. Also, the link he provided is for a subset of Axis2.
You're going to need the whole shebang for it to work and that's available here since, as of this writing, I couldn't find this release managed on any maven repositories:
https://repository.apache.org/content/groups/snapshots/org/apache/axis2/axis2/1.7.0-SNAPSHOT/
Because this version is not managed in maven right now figuring out the dependencies is a big pain. Here's a snapshot of the gradle dependencies I used:
compile 'org.apache.ws.commons.schema:XmlSchema:1.4.7'
compile 'org.apache.ws.commons.axiom:axiom-api:1.2.15'
compile 'org.apache.neethi:neethi:3.0.1'
compile 'axis:axis-wsdl4j:1.6.3'
compile 'commons-logging:commons-logging:1.1.1'
compile files('C:\\temp\\wsdl\\axis2-1.7.0-SNAPSHOT.jar', 'C:\\temp\\wsdl\\axiom.jar')
compile group: 'commons-collections', name: 'commons-collections', version: '3.2'
The axiom dependency was something I had to download manually because trying to use the repository managed version was not working for reasons that aren't clear to me.
All this aside, if you're not married to the Axis technology stack I would recommend avoiding it and instead integrating with a dynamic WSDL to Java framework that can accommodate WebServices whose Schema structure could change.