MVN

org.hibernate : hibernate-validator-legacy

Maven & Gradle

Nov 06, 2009
11 usages

Hibernate Validator Legacy · Following the DRY (Don't Repeat Yourself) principle, Hibernate Validator let's you express your domain constraints once (and only once) and ensure their compliance at various level of your system automatically.

<dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-validator-legacy</artifactId>
    <version>4.0.2.GA</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.hibernate : hibernate-validator-legacy to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 4.0.2.GA
  • Latest Beta: 4.0.0.Beta3

All Versions

Choose a version of org.hibernate : hibernate-validator-legacy to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
4.0.x
hibernate-validator-legacy-4.0.2.GA
hibernate-validator-legacy-4.0.1.GA
hibernate-validator-legacy-4.0.0.GA
hibernate-validator-legacy-4.0.0.CR1
hibernate-validator-legacy-4.0.0.Beta3
hibernate-validator-legacy-4.0.0.Beta2
3.1.x
hibernate-validator-legacy-3.1.0.GA

How to add a dependency to Maven

Add the following org.hibernate : hibernate-validator-legacy maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-validator-legacy</artifactId>
    <version>4.0.2.GA</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.hibernate : hibernate-validator-legacy gradle dependency to your build.gradle file:

implementation 'org.hibernate:hibernate-validator-legacy:4.0.2.GA'

Gradle Kotlin DSL: Add the following org.hibernate : hibernate-validator-legacy gradle kotlin dependency to your build.gradle.kts file:

implementation("org.hibernate:hibernate-validator-legacy:4.0.2.GA")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.hibernate : hibernate-validator-legacy sbt scala dependency to your build.sbt file:

libraryDependencies += "org.hibernate" % "hibernate-validator-legacy" % "4.0.2.GA"

Advertisement