Hi,
I'm getting this error although I have the jar included:
Caused by: org.eclipse.virgo.kernel.osgi.framework.UnableToSatisfyBundleDependenciesException: Unable to satisfy dependencies of bundle 'objectverse-1-objectverse.db' at version '1.0.0': Cannot resolve: objectverse-1-objectverse.db
Resolver report:
An Import-Package could not be resolved. Caused by missing constraint in bundle <objectverse-1-objectverse.db_1.0.0>
constraint: <Import-Package: javax.validation; version="0.0.0">
Regarding this error I guess there is no javax.validation present, but here is part of my pom.xml, that prooves that javax.validation is present.
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-commons-annotations</artifactId>
<version>3.1.0.GA</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
<scope>runtime</scope>
</dependency>
I also checked repository and all jars are there.
What and how can I trace the error? I chacked also the logs and thee is the same info present - nothing more.
Any help appreciated.
Best regards,
Bojan