MVN

net.sf.jexample : jexample

Maven & Gradle

Jul 19, 2011
3 usages

JExample · JExample is an extensions of JUnit that improves defect localizaton by changing the way you structure your tests. It introduces first-class dependencies. If test B depends on A, the return value of A can be used as B's fixture. And if A test fails, B and all other dependees of A are skipped and marked as white. We show in an empirical study that JExample improves performance and defect localization.

<dependency>
    <groupId>net.sf.jexample</groupId>
    <artifactId>jexample</artifactId>
    <version>4.4-378</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

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

  • Latest Stable: 4.4-378

All Versions

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

Version Vulnerabilities Updated
4.4
jexample-4.4-378

How to add a dependency to Maven

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

<dependency>
    <groupId>net.sf.jexample</groupId>
    <artifactId>jexample</artifactId>
    <version>4.4-378</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'net.sf.jexample:jexample:4.4-378'

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

implementation("net.sf.jexample:jexample:4.4-378")

How to add a dependency to SBT Scala

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

libraryDependencies += "net.sf.jexample" % "jexample" % "4.4-378"

Advertisement