What's the minimum classpath for an Axis2 client?

后端 未结 9 915
清歌不尽
清歌不尽 2021-02-01 15:24

I want to build an Axis2 client (I\'m only accessing a remote web service, I\'m not implementing one!) with Maven2 and I don\'t want to add 21MB of JARs to my project.

9条回答
  •  盖世英雄少女心
    2021-02-01 15:56

    Axis2 version 1.6.2 wouldn't work for me without axis2-xmlbeans (though this may have something to do with the fact that I'm also using the axis2-wsdl2code-maven-plugin plugin and xmlbeans as my data binding framework). I have the following POM:

        
            org.apache.axis2
            axis2-kernel
            1.6.2
        
        
            org.apache.axis2
            axis2-adb
            1.6.2
        
        
            org.apache.axis2
            axis2-transport-http
            1.6.2
        
        
            org.apache.axis2
            axis2-transport-local
            1.6.2
        
        
            org.apache.axis2
            axis2-xmlbeans
            1.6.2
        
    

提交回复
热议问题