jazio
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.enpassant</groupId>
<artifactId>jazio</artifactId>
<version>2.0.0</version>
</dependency><?xml version='1.0' encoding='UTF-8'?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.enpassant</groupId>
<artifactId>jazio</artifactId>
<packaging>jar</packaging>
<description>Java IO effect library, inspired by the fantastic ZIO library</description>
<version>2.0.0</version>
<name>jazio</name>
<organization>
<name>io.github.enpassant</name>
</organization>
<url>https://github.com/enpassant/jazio</url>
<licenses>
<license>
<name>Apache-style</name>
<url>https://opensource.org/licenses/Apache-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git@github.com:enpassant/jazio.git</url>
<connection>scm:git:git@github.com:enpassant/jazio.git</connection>
</scm>
<developers>
<developer>
<id>enpassant</id>
<name>Enpassant</name>
<email>enpassant.prog@gmail.com</email>
<url>https://github.com/enpassant</url>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>2.12.20</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.197</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>6.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.sbt.junit</groupId>
<artifactId>jupiter-interface</artifactId>
<version>0.17.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>