Apache Axis 2.0 - Code Generation.
Axis2 Code Generation module.
Here is the list of declaration for axis2-codegen. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.axis2</groupId> <artifactId>axis2-codegen</artifactId> <version>1.2</version> </dependency>
If you think this Maven repository POM file listing for axis2-codegen is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The axis2-codegen-1.2 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Web Service | axis2-kernel 1.2 Core Parts of Axis 2.0. This includes Axis 2.0 engine, Client API, Addressing support, etc., | 5 |
The following packages are defined in the axis2-codegen-1.2.jar
org.apache.axis2.wsdl org.apache.axis2.wsdl.codegen org.apache.axis2.wsdl.codegen.emitter org.apache.axis2.wsdl.codegen.extension org.apache.axis2.wsdl.codegen.writer org.apache.axis2.wsdl.databinding org.apache.axis2.wsdl.i18n org.apache.axis2.wsdl.util
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?><project> <parent> <artifactId>axis2-parent</artifactId> <groupId>org.apache.axis2</groupId> <version>1.2</version> <relativePath>../parent/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>axis2-codegen</artifactId> <name>Apache Axis 2.0 - Code Generation</name> <version>1.2</version> <description>Axis2 Code Generation module</description> <build> <sourceDirectory>src</sourceDirectory> <testSourceDirectory>test</testSourceDirectory> <resources> <resource> <directory>conf</directory> <excludes> <exclude>**/*.properties</exclude> </excludes> </resource> <resource> <directory>src</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> </build> <dependencies> <dependency> <groupId>org.apache.axis2</groupId> <artifactId>axis2-kernel</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>org.apache.axis2</groupId> <artifactId>axis2-adb</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>xmlbeans</groupId> <artifactId>xbean</artifactId> </dependency> <dependency> <groupId>xmlunit</groupId> <artifactId>xmlunit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.ws.jaxme</groupId> <artifactId>jaxme2</artifactId> </dependency> </dependencies> <distributionManagement> <status>deployed</status> </distributionManagement> </project>