liquibase rc maven dependencies in hibernate extension

Hi,

Is there a public maven repository to access these dependencies from the Liquibase Hibernate extension pom:

       
           org.liquibase
           liquibase-maven-plugin
           2.0-rc2-SNAPSHOT
           provided
       
       
           org.liquibase
           liquibase-core
           2.0-rc2-SNAPSHOT
       

Thanks!

Got it to compile and maven package. I commented out the first dependency and changed the second one to:

	<dependency>
		<!-- Because this is scope/system, nothing in here really matters except 
			systemPath -->
		<groupId>org.liquibase</groupId>
		<artifactId>liquibase-core</artifactId>
		<version>2.0-rc6</version>
		<scope>system</scope>
		<systemPath>${basedir}/lib/liquibase.jar</systemPath>
	</dependency>

where liquibase.jar is from the 2.0 RC6 download on http://www.liquibase.org/download

Glad you go it.  As part of the 2.0 final release I’m going to make sure the hibernate pom points to the non rc version.  I should have kept up on it better during the RC process. 

Nathan