MVN

com.smattme : request-validator

Maven & Gradle

Oct 28, 2022
9 stars

com.smattme:request-validator · This is a utility library for validating JSON HTTP request body for Java web applications. Request validator allows you to specify one or more rules that a request body must satisfy before it can be processed further in the controller.

<dependency>
    <groupId>com.smattme</groupId>
    <artifactId>request-validator</artifactId>
    <version>0.0.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.smattme : request-validator to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.0.2

All Versions

Choose a version of com.smattme : request-validator to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.0.x
request-validator-0.0.2
request-validator-0.0.1

How to add a dependency to Maven

Add the following com.smattme : request-validator maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.smattme</groupId>
    <artifactId>request-validator</artifactId>
    <version>0.0.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.smattme : request-validator gradle dependency to your build.gradle file:

implementation 'com.smattme:request-validator:0.0.2'

Gradle Kotlin DSL: Add the following com.smattme : request-validator gradle kotlin dependency to your build.gradle.kts file:

implementation("com.smattme:request-validator:0.0.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.smattme : request-validator sbt scala dependency to your build.sbt file:

libraryDependencies += "com.smattme" % "request-validator" % "0.0.2"

Advertisement