简体   繁体   中英

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.

<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 .

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

Once downlaoded check your .m2 folder

Repo in case Central Repo not work 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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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