为什么 Maven 存储库中没有 axis2 1.7.3 的 jar 版本?
Why is not there jar version of axis2 1.7.3 in Maven repository?
我正在尝试通过 Eclipse maven 下载 axis2 1.7.3。我无法下载 jar 文件。在 Maven 中央仓库中,他们没有罐子。
Maven Repository Link
为什么没有 jar 版本以及如何将 maven 配置到我的项目中?
如果您查看该工件的 POM 文件,它不是 JAR。它被打包为 POM 文件。
https://repo1.maven.org/maven2/org/apache/axis2/axis2/1.7.3/axis2-1.7.3.pom
由于它被打包为 pom,因此在那些 maven 坐标处没有 jar 工件。所以不会有 JAR 文件可供下载。如果您查看您引用的列表,中央没有 JAR 文件。
您要查找的 类 似乎在作为 axis2 的一部分部署的另一个 JAR 工件中
http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.apache.axis2%22
Axis2 1.6.4 版本中的工件 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:
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.
因此,您不能再依赖此 JAR,您需要分别为每个需要的模块添加依赖项。一个例子是 axis2-jaxws
(related web site).
我正在尝试通过 Eclipse maven 下载 axis2 1.7.3。我无法下载 jar 文件。在 Maven 中央仓库中,他们没有罐子。 Maven Repository Link
为什么没有 jar 版本以及如何将 maven 配置到我的项目中?
如果您查看该工件的 POM 文件,它不是 JAR。它被打包为 POM 文件。
https://repo1.maven.org/maven2/org/apache/axis2/axis2/1.7.3/axis2-1.7.3.pom
由于它被打包为 pom,因此在那些 maven 坐标处没有 jar 工件。所以不会有 JAR 文件可供下载。如果您查看您引用的列表,中央没有 JAR 文件。
您要查找的 类 似乎在作为 axis2 的一部分部署的另一个 JAR 工件中
http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.apache.axis2%22
Axis2 1.6.4 版本中的工件 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:
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.
因此,您不能再依赖此 JAR,您需要分别为每个需要的模块添加依赖项。一个例子是 axis2-jaxws
(related web site).