MVN

com.github.jayield : jayield

Maven & Gradle

Oct 31, 2020
1 usages
11 stars

JAYield - Java library implementation of yield, providing an idiomatic yield like generator. · Extensible lazy sequence, interoperable with Stream, providing individually and bulk traversal, and which suppresses the splitting infrastructure (required for parallel execution) delaying its creation until needed.

<dependency>
    <groupId>com.github.jayield</groupId>
    <artifactId>jayield</artifactId>
    <version>1.4.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.jayield : jayield to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.4.0

All Versions

Choose a version of com.github.jayield : jayield to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.4.x
jayield-1.4.0
1.3.x
jayield-1.3.0
1.2.x
jayield-1.2.1
jayield-1.2.0
1.0.x
jayield-1.0.5
jayield-1.0.4
jayield-1.0.3
jayield-1.0.2
jayield-1.0.1
jayield-1.0.0
0.1.x
jayield-0.1.0

How to add a dependency to Maven

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

<dependency>
    <groupId>com.github.jayield</groupId>
    <artifactId>jayield</artifactId>
    <version>1.4.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.jayield : jayield gradle dependency to your build.gradle file:

implementation 'com.github.jayield:jayield:1.4.0'

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

implementation("com.github.jayield:jayield:1.4.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.jayield : jayield sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.jayield" % "jayield" % "1.4.0"

Advertisement