Hello,
I use the following settings in order to get the latest builds of hibernate:
Code:
<repository>
<id>jboss</id>
<name>JBoss Repository</name>
<url>http://repository.jboss.org/nexus/content/groups/public-jboss/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
Code:
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate</artifactId>
<version>3.5.4-Final</version>
</dependency>
and it is not working. Here is what netbeans tells me:
Code:
NetBeans: Executing 'mvn -Dnetbeans.execution=true clean install'
NetBeans: JAVA_HOME=/usr/lib/jvm/java-6-sun
Scanning for projects...
------------------------------------------------------------------------
Building jeanbaptistemartin.com
task-segment: [clean, install]
------------------------------------------------------------------------
[clean:clean]
Deleting file set: /home/julien/Documents/jeanbaptistemartin.com/site/jeanbaptistemartin/target (included: [**], excluded: [])
[resources:resources]
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
Copying 17 resources
[WARNING] POM for 'org.restfaces:restfaces:pom:1.3.1:compile' is invalid.
Its dependencies (if any) will NOT be available to the current build.
Downloading: http://download.java.net/maven/1/org.hibernate/poms/hibernate-3.5.4-Final.pom
Unable to find resource 'org.hibernate:hibernate:pom:3.5.4-Final' in repository java.net (http://download.java.net/maven/1)
Downloading: http://download.java.net/maven/2/org/hibernate/hibernate/3.5.4-Final/hibernate-3.5.4-Final.pom
Unable to find resource 'org.hibernate:hibernate:pom:3.5.4-Final' in repository maven2-repository.dev.java.net (http://download.java.net/maven/2)
Downloading: http://repository.jboss.com/maven2//org/hibernate/hibernate/3.5.4-Final/hibernate-3.5.4-Final.pom
Unable to find resource 'org.hibernate:hibernate:pom:3.5.4-Final' in repository jboss (http://repository.jboss.com/maven2/)
Downloading: http://s3.amazonaws.com/maven.springframework.org/milestone/org/hibernate/hibernate/3.5.4-Final/hibernate-3.5.4-Final.pom
Unable to find resource 'org.hibernate:hibernate:pom:3.5.4-Final' in repository spring-milestone (http://s3.amazonaws.com/maven.springframework.org/milestone)
Downloading: http://oss.sonatype.org/content/repositories/snapshots/org/hibernate/hibernate/3.5.4-Final/hibernate-3.5.4-Final.pom
Unable to find resource 'org.hibernate:hibernate:pom:3.5.4-Final' in repository sonatype (http://oss.sonatype.org/content/repositories/snapshots)
Downloading: http://ocpsoft.com/repository//org/hibernate/hibernate/3.5.4-Final/hibernate-3.5.4-Final.pom
[WARNING] *** CHECKSUM FAILED - Error retrieving checksum file for org/hibernate/hibernate/3.5.4-Final/hibernate-3.5.4-Final.pom - IGNORING
[WARNING] POM for 'org.hibernate:hibernate:pom:3.5.4-Final:compile' is invalid.
Its dependencies (if any) will NOT be available to the current build.
[WARNING] POM for 'net.sf.ehcache:ehcache-terracotta:pom:2.2.0:compile' is invalid.
Its dependencies (if any) will NOT be available to the current build.
[WARNING] POM for 'org.terracotta:terracotta-toolkit-1.0-runtime:pom:1.0.0:compile' is invalid.
Its dependencies (if any) will NOT be available to the current build.
[WARNING] POM for 'com.jhlabs:imaging:pom:01012005:compile' is invalid.
Its dependencies (if any) will NOT be available to the current build.
Downloading: http://download.java.net/maven/1/org.hibernate/jars/hibernate-3.5.4-Final.jar
Unable to find resource 'org.hibernate:hibernate:jar:3.5.4-Final' in repository java.net (http://download.java.net/maven/1)
Downloading: http://download.java.net/maven/2/org/hibernate/hibernate/3.5.4-Final/hibernate-3.5.4-Final.jar
Unable to find resource 'org.hibernate:hibernate:jar:3.5.4-Final' in repository maven2-repository.dev.java.net (http://download.java.net/maven/2)
Downloading: http://repository.jboss.com/maven2//org/hibernate/hibernate/3.5.4-Final/hibernate-3.5.4-Final.jar
Unable to find resource 'org.hibernate:hibernate:jar:3.5.4-Final' in repository jboss (http://repository.jboss.com/maven2/)
Downloading: http://s3.amazonaws.com/maven.springframework.org/milestone/org/hibernate/hibernate/3.5.4-Final/hibernate-3.5.4-Final.jar
Unable to find resource 'org.hibernate:hibernate:jar:3.5.4-Final' in repository spring-milestone (http://s3.amazonaws.com/maven.springframework.org/milestone)
Downloading: http://oss.sonatype.org/content/repositories/snapshots/org/hibernate/hibernate/3.5.4-Final/hibernate-3.5.4-Final.jar
Unable to find resource 'org.hibernate:hibernate:jar:3.5.4-Final' in repository sonatype (http://oss.sonatype.org/content/repositories/snapshots)
Downloading: http://ocpsoft.com/repository//org/hibernate/hibernate/3.5.4-Final/hibernate-3.5.4-Final.jar
[WARNING] *** CHECKSUM FAILED - Error retrieving checksum file for org/hibernate/hibernate/3.5.4-Final/hibernate-3.5.4-Final.jar - IGNORING
[compiler:compile]
Compiling 47 source files to /home/julien/Documents/jeanbaptistemartin.com/site/jeanbaptistemartin/target/classes
------------------------------------------------------------------------
[ERROR]BUILD FAILURE
------------------------------------------------------------------------
Compilation failure
error: error reading /home/julien/.m2/org/hibernate/hibernate/3.5.4-Final/hibernate-3.5.4-Final.jar; error in opening zip file
error: error reading /home/julien/.m2/net/sf/ehcache/ehcache/2.2.0/ehcache-2.2.0.jar; error in opening zip file
------------------------------------------------------------------------
For more information, run Maven with the -e switch
------------------------------------------------------------------------
Total time: 11 seconds
Finished at: Sun Aug 22 12:38:25 CEST 2010
Final Memory: 17M/142M
------------------------------------------------------------------------
Can anyone please help. I don't know which repository to use...
Thanks in advance,
Julien.