Search code examples
eclipsemavenapache-axis

Why is not there jar version of axis2 1.7.3 in Maven repository?


I'm trying to download the axis2 1.7.3 through Eclipse maven. I coudn't download the jar file. In the maven central repocitery, they don't have the jar. Maven Repository Link

Why isn't there jar version and how to configur maven to have it on my project?


Solution

  • The artifact org.apache.axis2:axis2 was an uber-jar that consisted of every module of Axis2 packaged in a single fat JAR. This special artifact was removed in version 1.6.4 of Axis2:

    Please note that in order to simplify the build and release process, the document distribution and all-in-one JARs have been removed in this release.

    As such, you can't have a dependency on this JAR anymore, and you need to add dependencies to each wanted module separately. An example is axis2-jaxws (related web site).