i dont know how many of you noticed http://repository.jboss.org/maven2 is down. where are you getting your jars from now?

for example if you want hibernate 3.5.6-Final, where do you get it from?

thanks in advance

link|improve this question

41% accept rate
JBoss repo has been moved in June 2011 - did you check yesterday question and answers about this issue? stackoverflow.com/questions/7657978/… – gnat Oct 6 '11 at 10:55
feedback

2 Answers

up vote 2 down vote accepted

From Hibernate's download page, the JBoss Maven Repository is at https://repository.jboss.org/nexus/content/groups/public/

Your question is tagged with Maven-2, but if you're not using Maven to manage dependencies, you should be downloading the Hibernate Bundle from SourceForge.

Anyway, Maven can download them from the Maven Central Repository. You can use these dependencies for hibernate 3.5.6, with annotations, without specifying any additional repository :

   <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-annotations</artifactId>
        <version>3.5.6-Final</version>
    </dependency>

You might want to use the hibernate-core artifact instead, and other non-transitive dependencies you're intereseted in.

Take a look at this possible duplicate question: How can I use Maven to get the latest Hibernate release?

By the way, it seems that repository.jboss.org/maven2 is up.

link|improve this answer
hibernate-core is not there, if i download this one, will it be enough? – Ikthiander Oct 6 '11 at 9:54
Are you using maven to manage dependencies? If you are, you can add the hibernate-core artifact with the same <dependency> in the answer, just changing artifactId. Maven will download the artifact from here without need to add additional repositories. On the contrary, if you're not using maven to manage dependencies, you should be downloading the Hibernate Bundle from SourceForge. I've updated the answer with this information. – Xavi López Oct 6 '11 at 10:43
feedback

From Hibernate's site: ( http://in.relation.to/Bloggers/HibernateCore367FinalRelease )

I believe the URL of the repository should be http://repository.jboss.org/nexus/content/groups/public-jboss/ instead of http://repository.jboss.org/maven2

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.