• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Hibernate Jars Updation

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

we are now moving to hibernate 3.5.6 version
I have updated my pom xml for 3.5.6 as below.
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>3.5.6</version>
<scope>compile</scope>
</dependency>

while updating the hibernate-core i am getting the following error

Missing:
----------
1) org.hibernate:hibernate-core:jar:3.5.6

Try downloading the file manually from the project website.

Then, install it using the command:
mvn install:install-file -DgroupId=org.hibernate -DartifactId=hibernate-core -Dversi
on=3.5.6 -Dpackaging=jar -Dfile=/path/to/file

Alternatively, if you host your own repository you can deploy the file there:
mvn deploy:deploy-file -DgroupId=org.hibernate -DartifactId=hibernate-core -Dversion
=3.5.6 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

Path to dependency:
1) doml:jar:1.0-SNAPSHOT
2) org.hibernate:hibernate-core:jar:3.5.6

----------
1 required artifact is missing.

for artifact:
doml:jar:1.0-SNAPSHOT

from the specified remote repositories:
central (http://repo1.maven.org/maven2),
jbossRepo (https://repository.jboss.org/nexus),


currently we are using

Hibernate-annotations -->3.4.0.GA
hibernate-tools -->3.2.3.GA
hibernate-core -->3.3.1.GA
hibernate-ehcache -->3.3.1.GA
hibernate-cglig-pack -->2.1_3

Can any one help me on this?

Narsimlu Jakku
reply
    Bookmark Topic Watch Topic
  • New Topic