MVN

com.mastfrog : simplevalidation

Maven & Gradle

Jul 23, 2022
5 usages
3 stars

Simple Validation · This is a simple library for quickly adding validation code to Swing user-interfaces. It handles validating user input when the user changes a component's value, showing error messages and decorating components to indicate which component is the source of the problem. It contains a large number of built-in validators to handle most common situations, such as validating numbers, email addresses, urls and so forth.

<dependency>
    <groupId>com.mastfrog</groupId>
    <artifactId>simplevalidation</artifactId>
    <version>1.14.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.mastfrog : simplevalidation to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.14.1

All Versions

Choose a version of com.mastfrog : simplevalidation to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.14.x
simplevalidation-1.14.1
1.14
simplevalidation-1.14
1.13
simplevalidation-1.13

How to add a dependency to Maven

Add the following com.mastfrog : simplevalidation maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.mastfrog</groupId>
    <artifactId>simplevalidation</artifactId>
    <version>1.14.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.mastfrog : simplevalidation gradle dependency to your build.gradle file:

implementation 'com.mastfrog:simplevalidation:1.14.1'

Gradle Kotlin DSL: Add the following com.mastfrog : simplevalidation gradle kotlin dependency to your build.gradle.kts file:

implementation("com.mastfrog:simplevalidation:1.14.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.mastfrog : simplevalidation sbt scala dependency to your build.sbt file:

libraryDependencies += "com.mastfrog" % "simplevalidation" % "1.14.1"