result-monad
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.erwinkok.result</groupId> <artifactId>result-monad</artifactId> <version>1.4.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>org.erwinkok.result</groupId> <artifactId>result-monad</artifactId> <version>1.4.0</version> <name>result-monad</name> <description>Result monad for modelling success or failure results.</description> <url>https://github.com/erwin-kok/result-monad</url> <inceptionYear>2022</inceptionYear> <licenses> <license> <name>BSD-3-Clause</name> <url>https://opensource.org/licenses/BSD-3-Clause</url> </license> </licenses> <developers> <developer> <id>erwin-kok</id> <name>Erwin Kok</name> <email>github@erwinkok.org</email> <url>https://github.com/erwin-kok/</url> <roles> <role>owner</role> <role>developer</role> </roles> </developer> </developers> <scm> <connection>scm:git:https://github.com/erwin-kok/result-monad</connection> <developerConnection>scm:git:ssh://git@github.com:erwin-kok/result-monad.git</developerConnection> <url>https://github.com/erwin-kok/result-monad</url> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/erwin-kok/result-monad/issues</url> </issueManagement> <dependencyManagement> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-bom</artifactId> <version>1.9.0</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.9.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.github.microutils</groupId> <artifactId>kotlin-logging-jvm</artifactId> <version>3.0.5</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.7</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>1.9.0</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.9.3</version> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.9.3</version> <scope>runtime</scope> <optional>true</optional> </dependency> </dependencies> </project>