简体   繁体   English

找不到要下载的JBoss-as-client-5.1.0.GA.jar

[英]Can't Find JBoss-as-client-5.1.0.GA.jar to download

我正在寻找JBoss-as-client-5.1.0.GA.jar来下载它,但在Maven存储库中似乎找不到它(这是我发现的: jboss-as-client )当我需要的是描述中的files属性(类似于Files

your version of dependencies is so old and you should update the version with below dependencies and update project, then file those jar into .m2 folder. 您的依赖性版本太旧了,您应该使用以下依赖性更新版本并更新项目,然后将这些jar文件归档到.m2文件夹中。

<dependency>
    <groupId>org.jboss.jbossas</groupId>
    <artifactId>jboss-as-client</artifactId>
    <version>6.0.0.20100721-M4</version>
</dependency>

and

<dependency>
    <groupId>org.jboss.logging</groupId>
    <artifactId>jboss-logging</artifactId>
    <version>3.3.0.Final</version>
</dependency>
<dependency>
    <groupId>org.jboss.jbossas</groupId>
    <artifactId>jboss-as-client</artifactId>
    <version>5.1.0.GA</version>
</dependency>

Is this you want ? 这是你想要的吗?

Update : Hi , you can go to this page and see what all jar will be required as this jar have dependencies on other jar too . 更新:嗨,您可以转到此页面,查看所有需要的jar,因为此jar也依赖于其他jar。

https://mvnrepository.com/artifact/org.jboss.jbossas/jboss-as-client/5.1.0.GA https://mvnrepository.com/artifact/org.jboss.jbossas/jboss-as-client/5.1.0.GA

Once downlaoded check your .m2 folder 升级后,检查您的.m2文件夹

Repo in case Central Repo not work https://repository.jboss.org/nexus/content/groups/public/org/jboss/jbossas/jboss-as-client/ 如果中央仓库无法正常工作, 请进行 仓库 https://repository.jboss.org/nexus/content/groups/public/org/jboss/jbossas/jboss-as-client/

Else you can try direct download tool https://jar-download.com/online-maven-download-tool.php 另外,您可以尝试直接下载工具 https://jar-download.com/online-maven-download-tool.php

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM