camel-hibernate now has a mvn repo

Posted by dave
on September 03, 2008 @ 06:29 PM

A maven repo has been added to the camel-extra google code project, so its no longer necessary to build the camel-hibernate project from scratch. Yay!

In order to add the camel-hibernate plugin as a dependency of your camel project you just need to add the repo:
1
2
3
4
5
<repository>  
  <id>camel-extra-release</id>  
  <name>Camel Extra Maven repository of releases</name>  
  <url>http://camel-extra.googlecode.com/svn/maven2/releases</url>
</repository>
Then add the dependency for the hibernate component:
1
2
3
4
5
<dependency>  
   <groupId>org.apache.camel.extra</groupId>  
   <artifactId>camel-hibernate</artifactId>  
   <version>1.0</version>
</dependency>

(Thanks Joe for the heads up)