Skip to content
/ tasks Public

Task datatype, meant for cross-language interop (Java, Kotlin, Scala)

Notifications You must be signed in to change notification settings

funfix/tasks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

dc3c0be · Mar 28, 2025

History

64 Commits
Mar 28, 2025
Mar 27, 2025
Jul 16, 2024
Mar 27, 2025
Mar 28, 2025
Jul 16, 2024
Mar 27, 2025
Jul 19, 2024
Mar 27, 2025
Mar 28, 2025
Mar 27, 2025
Mar 27, 2025
Mar 27, 2025
Mar 27, 2025
Mar 27, 2025

Repository files navigation

Tasks

build maven javadoc

This is a library meant for library authors that want to build libraries that work across Java, Scala, or Kotlin, without having to worry about interoperability with whatever method of I/O that the library is using under the hood.

Usage

Read the Javadoc. Better documentation is coming.


Maven:

<dependency>
  <groupId>org.funfix</groupId>
  <artifactId>tasks-jvm</artifactId>
  <version>0.0.3</version>
</dependency>

Gradle:

dependencies {
    implementation("org.funfix:tasks-jvm:0.0.3")
}

sbt:

libraryDependencies += "org.funfix" % "tasks-jvm" % "0.0.3"