If you remove the text β-SNAPSHOTβ from each dependency in the pom.xml file, it should start working. SNAPSHOT dependencies are not available in any public repo.
<robospice.ormlite.content.provider.version>1.4.5</robospice.ormlite.content.provider.version> <robospice.spring.android.version>1.4.5</robospice.spring.android.version> <ormlite.content.provider.version>1.0.0</ormlite.content.provider.version>
You can find all versions available in this public repo .
EDIT: There is another option that may be the best way (especially if you intend to use a lot of samples). You can download the library source code from the main Robospice branch and run mvn install (make sure your Android emulator works for unit tests). This will make the latest version of the snapshot available for maven in your local repo - if you do this, the original sample project will be launched, but you still need to update the version number in your pom.xml example to 1.4.7-SNAPSHOT - which is the current version snapshot from the main branch.
source share