Axis2客户端的最少依赖


参考地址:http://stackoverflow.com/questions/320178/whats-the-minimum-classpath-for-an-axis2-client


		<dependency>
			<groupId>org.apache.axis2</groupId>
			<artifactId>axis2-adb</artifactId>
			<version>1.6.2</version>
		</dependency>
		<dependency>
		    <groupId>org.apache.axis2</groupId>
		    <artifactId>axis2-transport-local</artifactId>
		    <version>1.6.2</version>
		</dependency>
		<dependency>
		    <groupId>org.apache.axis2</groupId>
		    <artifactId>axis2-transport-http</artifactId>
		    <version>1.6.2</version>
		</dependency>


你可能感兴趣的:(Axis2客户端的最少依赖)