[jboss-user] [JBoss Cache] - Getting jbosscache-core via Maven

c c do-not-reply at jboss.com
Wed Aug 10 10:59:50 EDT 2011


c c [http://community.jboss.org/people/caseta] created the discussion

"Getting jbosscache-core via Maven"

To view the discussion, visit: http://community.jboss.org/message/620402#620402

--------------------------------------------------------------
Hi,

I am trying to add hibernate-jbosscache2 as a Maven dependency to my project, but I get:
Missing artifact org.jboss.cache:jbosscache-core:jar:3.1.0.GA:compile

I have the following repositories in my maven settings.xml



| 
 | 
 | 
 | 
 | <!-- CODEHAUS --> |
| 
 | 
 | 
 | 
 | <repository> |
| 
 | 
 | 
 | 
 | 
 | <id>codehausSnapshots</id> |
| 
 | 
 | 
 | 
 | 
 | <name>Codehaus Snapshots</name> |
| 
 | 
 | 
 | 
 | 
 | <releases> |
| 
 | 
 | 
 | 
 | 
 | 
 | <enabled>false</enabled> |
| 
 | 
 | 
 | 
 | 
 | 
 | <updatePolicy>always</updatePolicy> |
| 
 | 
 | 
 | 
 | 
 | 
 | <checksumPolicy>warn</checksumPolicy> |
| 
 | 
 | 
 | 
 | 
 | </releases> |
| 
 | 
 | 
 | 
 | 
 | <snapshots> |
| 
 | 
 | 
 | 
 | 
 | 
 | <enabled>true</enabled> |
| 
 | 
 | 
 | 
 | 
 | 
 | <updatePolicy>never</updatePolicy> |
| 
 | 
 | 
 | 
 | 
 | 
 | <checksumPolicy>fail</checksumPolicy> |
| 
 | 
 | 
 | 
 | 
 | </snapshots> |
| 
 | 
 | 
 | 
 | 
 | <url>http://snapshots.maven.codehaus.org/maven2</url> |
| 
 | 
 | 
 | 
 | 
 | <layout>default</layout> |
| 
 | 
 | 
 | 
 | </repository> |


| 
 | 
 | 
 | 
 | <!-- MAVEN CENTRAL --> |
| 
 | 
 | 
 | 
 | <repository> |
| 
 | 
 | 
 | 
 | 
 | <id>repo1</id> |
| 
 | 
 | 
 | 
 | 
 | <name>Maven default repo</name> |
| 
 | 
 | 
 | 
 | 
 | <releases> |
| 
 | 
 | 
 | 
 | 
 | 
 | <enabled>true</enabled> |
| 
 | 
 | 
 | 
 | 
 | 
 | <updatePolicy>always</updatePolicy> |
| 
 | 
 | 
 | 
 | 
 | 
 | <checksumPolicy>warn</checksumPolicy> |
| 
 | 
 | 
 | 
 | 
 | </releases> |
| 
 | 
 | 
 | 
 | 
 | <snapshots> |
| 
 | 
 | 
 | 
 | 
 | 
 | <enabled>true</enabled> |
| 
 | 
 | 
 | 
 | 
 | 
 | <updatePolicy>never</updatePolicy> |
| 
 | 
 | 
 | 
 | 
 | 
 | <checksumPolicy>fail</checksumPolicy> |
| 
 | 
 | 
 | 
 | 
 | </snapshots> |
| 
 | 
 | 
 | 
 | 
 | <url>http://repo1.maven.org/maven2</url> |
| 
 | 
 | 
 | 
 | 
 | <layout>default</layout> |
| 
 | 
 | 
 | 
 | </repository> |
| 
 | 
 | 
 | 
 |
| 
 | 
 | 
 | 
 | <!-- JAVA --> |
| 
 | 
 | 
 | 
 | <repository> |
| 
 | 
 | 
 | 
 | 
 | <id>maven2-repository.java.net</id> |
| 
 | 
 | 
 | 
 | 
 | <name>Java.net Repository for Maven</name> |
| 
 | 
 | 
 | 
 | 
 | <releases> |
| 
 | 
 | 
 | 
 | 
 | 
 | <enabled>true</enabled> |
| 
 | 
 | 
 | 
 | 
 | 
 | <updatePolicy>always</updatePolicy> |
| 
 | 
 | 
 | 
 | 
 | 
 | <checksumPolicy>warn</checksumPolicy> |
| 
 | 
 | 
 | 
 | 
 | </releases> |
| 
 | 
 | 
 | 
 | 
 | <url>http://download.java.net/maven/2/</url> |
| 
 | 
 | 
 | 
 | 
 | <layout>default</layout> |
| 
 | 
 | 
 | 
 | </repository> |
| 
 | 
 | 
 | 
 |
| 
 | 
 | 
 | 
 | <!-- SPRING --> |
| 
 | 
 | 
 | 
 | <repository> |
| 
 | 
 | 
 | 
 | 
 | <id>com.springsource.repository.bundles.release</id> |
| 
 | 
 | 
 | 
 | 
 | <name>EBR Spring Release Repository</name> |
| 
 | 
 | 
 | 
 | 
 | <url>http:// repository.springsource.com/maven/bundles/release</url> |
| 
 | 
 | 
 | 
 | </repository> |
| 
 | 
 | 
 | 
 | <repository> |
| 
 | 
 | 
 | 
 | 
 | <id>com.springsource.repository.bundles.external</id> |
| 
 | 
 | 
 | 
 | 
 | <name>EBR External Release Repository</name> |
| 
 | 
 | 
 | 
 | 
 | <url>http:// repository.springsource.com/maven/bundles/external</url> |
| 
 | 
 | 
 | 
 | </repository> |
| 
 | 
 | 
 | 
 |
| 
 | 
 | 
 | 
 | <!-- JBOSS --> |
| 
 | 
 | 
 | 
 | <repository> |
| 
 | 
 | 
 | 
 | 
 | <id>jboss-public-repository-group</id> |
| 
 | 
 | 
 | 
 | 
 | <name>JBoss Public Repository Group</name> |
| 
 | 
 | 
 | 
 | 
 | <url>http://repository.jboss.org/nexus/content/groups/public/</url> |
| 
 | 
 | 
 | 
 | 
 | <layout>default</layout> |
| 
 | 
 | 
 | 
 | 
 | <releases> |
| 
 | 
 | 
 | 
 | 
 | 
 | <enabled>true</enabled> |
| 
 | 
 | 
 | 
 | 
 | 
 | <updatePolicy>never</updatePolicy> |
| 
 | 
 | 
 | 
 | 
 | </releases> |
| 
 | 
 | 
 | 
 | 
 | <snapshots> |
| 
 | 
 | 
 | 
 | 
 | 
 | <enabled>true</enabled> |
| 
 | 
 | 
 | 
 | 
 | 
 | <updatePolicy>never</updatePolicy> |
| 
 | 
 | 
 | 
 | 
 | </snapshots> |
| 
 | 
 | 
 | 
 | </repository> |


Any ideas why this happens ?
Thank you.
--------------------------------------------------------------

Reply to this message by going to Community
[http://community.jboss.org/message/620402#620402]

Start a new discussion in JBoss Cache at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2052]

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/jboss-user/attachments/20110810/49d7fda2/attachment-0001.html 


More information about the jboss-user mailing list