RESTEasy2.2.1.GA在maven中的repository

只是做下记录,方便自己和他人以后使用。
用以前的1.x版本的resteasy,需要在pom.xml中添加


<repository>
  <id>jboss</id>
  <url>http://repository.jboss.org/maven2</url>

但现在resteasy到了2.x版本,需要把repository修改成


  <repository>
      <id>JBoss repository</id>
      <url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url>
  </repository>

你可能感兴趣的:(RESTEasy2.2.1.GA在maven中的repository)