0

我正在尝试在 jboss7.1.1 上构建 MDB,我有一个 maven 项目,但无法导入 javax.jms 包,我已将以下依赖项放入 pom.xml

<dependency>
 <groupId>javax.jms</groupId>
 <artifactId>jms</artifactId>
  <version>1.1</version>
</dependency>

我也在 pom.xml 中定义了这个 repo

 <repository>
           <id>jboss-public-repository</id>
           <name>JBoss Repository</name>
           <url>http://repository.jboss.org/nexus/content/groups/public</url>
           <!-- These optional flags are designed to speed up your builds 
              by reducing remote server calls -->
           <releases>
              <enabled>true</enabled>
           </releases>
           <snapshots>
              <enabled>false</enabled>
           </snapshots>
        </repository>

在eclipse中我得到了错误

ArtifactDescriptorException: Failed to read artifact descriptor for javax.jms:jms:jar:1.1:     
 ArtifactResolutionException: Failure to transfer javax.jms:jms:pom:1.1 from  
 http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. 
 Original error: Could not transfer artifact javax.jms:jms:pom:1.1 from/to central (http://repo.maven.apache.org/maven2): 
 Remotely Closed [id: 0x01c17b4c, /0:0:0:0:0:0:0:1:54960 :> repo.maven.apache.org/185.31.16.185:80] pom.xml /fourPMOperations-ejb   line 1  Maven Dependency Problem

有什么提示吗?应该是配置问题。

4

1 回答 1

0

我在 pom 中找到了解决此依赖项的解决方案:

<dependency>
  <groupId>javax</groupId>
  <artifactId>javaee-api</artifactId>
  <version>6.0</version>
  <scope>provided</scope>
</dependency>
于 2013-10-24T13:52:06.347 回答