I am using Maven to do my builds for Jive SBS; however, I needed to add the Axis2 jar files to commucate with the Single Sign-on Server. I added all that were needed to do the perform the wsdl2java functionality. Here are the dependencies that I added to the pom.xml to grab all of the jar files.

Please substitute your version with the version number I have included in the POM.


<!--Begin added for Axis -->
<dependency>
  <groupId>org.apache.axis2</groupId> 
  <artifactId>axis2</artifactId> 
  <version>1.5.1</version> 
</dependency>
<dependency>
  <groupId>org.apache.axis2</groupId> 
  <artifactId>axis2-adb</artifactId> 
  <version>1.5.1</version> 
</dependency>
<dependency>
  <groupId>org.apache.axis2</groupId> 
  <artifactId>axis2-adb-codegen</artifactId> 
  <version>1.5.1</version> 
</dependency>
<dependency>
  <groupId>org.apache.axis2</groupId> 
  <artifactId>axis2-ant-plugin</artifactId> 
  <version>1.5.1</version> 
</dependency>
<dependency>
  <groupId>org.apache.axis2</groupId> 
  <artifactId>axis2-clustering</artifactId> 
  <version>1.5.1</version> 
</dependency>
<dependency>
  <groupId>org.apache.axis2</groupId> 
  <artifactId>axis2-codegen</artifactId> 
  <version>1.5.1</version> 
</dependency>
<dependency>
  <groupId>org.apache.axis2</groupId> 
  <artifactId>axis2-corba</artifactId> 
  <version>1.5.1</version> 
</dependency>
<dependency>
  <groupId>org.apache.axis2</groupId> 
  <artifactId>axis2-fastinfoset</artifactId> 
  <version>1.5.1</version> 
</dependency>
<dependency>
  <groupId>org.apache.axis2</groupId> 
  <artifactId>axis2-jaxbri</artifactId> 
  <version>1.5.1</version> 
</dependency>
<dependency>
  <groupId>org.apache.axis2</groupId> 
  <artifactId>axis2-jaxws</artifactId> 
  <version>1.5.1</version> 
</dependency>
<dependency>
  <groupId>org.apache.axis2</groupId> 
  <artifactId>axis2-jibx</artifactId> 
  <version>1.5.1</version> 
</dependency>
<dependency>
  <groupId>org.apache.axis2</groupId> 
  <artifactId>axis2-json</artifactId> 
  <version>1.5.1</version> 
</dependency>
<dependency>
  <groupId>org.apache.axis2</groupId> 
  <artifactId>axis2-xmlbeans</artifactId> 
  <version>1.5.1</version> 
</dependency>
<dependency>
  <groupId>org.apache.axis2</groupId> 
  <artifactId>axis2-mtompolicy</artifactId> 
  <version>1.5.1</version> 
</dependency>
<!--End added for Axis -->