MVN

net.jsunit : jsunit

Maven & Gradle

Oct 24, 2007
2 usages

JsUnit · JsUnit is a Unit Testing framework for client-side (in-browser) JavaScript. It is essentially a port of JUnit to JavaScript. Also included is a platform for automating the execution of tests on multiple browsers and mutiple machines running different OSs. Its development began in January 2001.

<dependency>
    <groupId>net.jsunit</groupId>
    <artifactId>jsunit</artifactId>
    <version>2.1.4</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of net.jsunit : jsunit to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.1.4

All Versions

Choose a version of net.jsunit : jsunit to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.1.x
jsunit-2.1.4

How to add a dependency to Maven

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

<dependency>
    <groupId>net.jsunit</groupId>
    <artifactId>jsunit</artifactId>
    <version>2.1.4</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following net.jsunit : jsunit gradle dependency to your build.gradle file:

implementation 'net.jsunit:jsunit:2.1.4'

Gradle Kotlin DSL: Add the following net.jsunit : jsunit gradle kotlin dependency to your build.gradle.kts file:

implementation("net.jsunit:jsunit:2.1.4")

How to add a dependency to SBT Scala

SBT Scala: Add the following net.jsunit : jsunit sbt scala dependency to your build.sbt file:

libraryDependencies += "net.jsunit" % "jsunit" % "2.1.4"

Advertisement