简体   繁体   English

在Jboss 7中缺少Jboss 5的依赖性

[英]Missing Dependencies of Jboss 5 in Jboss 7

I am trying to port a project from Jboss 5 to Jboss 7. I have these dependencies in Maven under dependency management in pom.xml: 我正在尝试将项目从Jboss 5移植到Jboss 7.我在pom.xml中的依赖管理下在Maven中有这些依赖项:

<dependency>
    <groupId>org.jboss.jbossas</groupId>
    <artifactId>jboss-as-system-jmx</artifactId>
    <version>5.1.0.GA</version>
    <scope>provided</scope>
</dependency>

<dependency>
    <groupId>org.jboss.jbossas</groupId>
    <artifactId>jboss-as-system</artifactId>
    <version>5.1.0.GA</version>
    <scope>provided</scope>
</dependency>

<dependency>
    <groupId>org.jboss.jbossas</groupId>
    <artifactId>jboss-as-j2se</artifactId>
    <version>5.1.0.GA</version>
    <scope>provided</scope>
</dependency>

What would be the corresponding Jboss 7 dependencies? 什么是相应的Jboss 7依赖项?

It seems that the name of the groupid has changed to org.jboss.as but the included artifacts don't have the same names. 似乎groupid的名称已更改为org.jboss.as,但包含的工件不具有相同的名称。 Are they included in other artifacts? 它们是否包含在其他工件中?

The core of JBoss 7 was completely rewritten since JBoss 5. 自JBoss 5以来,JBoss 7的核心完全重写了。

If you had dependencies on jboss system, you'll probably need to re-evaluate them to see why you needed them in the first place and what it could correspondend to in JBoss 7. 如果您对jboss系统有依赖关系,那么您可能需要重新评估它们以了解为什么首先需要它们以及它在JBoss 7中可以对应的内容。

Start with the nexus search at: https://repository.jboss.org/nexus/index.html#nexus-search;gav~org.jboss.as~~~~ You can do a classname search there as well. 从nexus搜索开始: https ://repository.jboss.org/nexus/index.html#nexus-search;gav ~org.jboss.as ~~~~您也可以在那里进行类名搜索。

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

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