I don't know what you mean by standalone in this context, but here is a link to the 4.3.1 version of hibernate-validator .
Adding this to your pom will give you access to all annotations in the org.hibernate.validator.constraints package:
<dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-validator</artifactId> <version>4.3.0.Final</version> </dependency>
mvnrepository.com is a very good place to search for maven artifacts.
Edit
Ok, now I understand your question, you only want the annotations in org.hibernate.validator.constraints be dependent on all other validation materials.
Then my answer is no, there is no such thin can. You will need to use hibernate-validator to get annotations.
source share