MVN

net.mguenther.gen : gen

Maven & Gradle

Apr 10, 2020
2 stars

gen · Gen provides the Gen monad for Java 8+. Using the Gen monad, developers can implement a generative approach for creating test fixtures that helps to write unit and integration tests in a lean and non-obtrusive way.

<dependency>
    <groupId>net.mguenther.gen</groupId>
    <artifactId>gen</artifactId>
    <version>1.2.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

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

  • Latest Stable: 1.2.0
  • Latest Release Candidate: 1.0.0-rc1

All Versions

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

Version Vulnerabilities Updated
1.2.x
gen-1.2.0
1.1.x
gen-1.1.0
1.0.x
gen-1.0.0-rc1

How to add a dependency to Maven

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

<dependency>
    <groupId>net.mguenther.gen</groupId>
    <artifactId>gen</artifactId>
    <version>1.2.0</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'net.mguenther.gen:gen:1.2.0'

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

implementation("net.mguenther.gen:gen:1.2.0")

How to add a dependency to SBT Scala

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

libraryDependencies += "net.mguenther.gen" % "gen" % "1.2.0"