ratpack-kotlin-coroutines
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>me.drmaas</groupId> <artifactId>ratpack-kotlin-coroutines</artifactId> <version>1.10.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 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>me.drmaas</groupId> <artifactId>ratpack-kotlin-coroutines</artifactId> <version>1.10.0</version> <name>Ratpack kotlin dsl library</name> <description>Ratpack kotlin dsl library</description> <url>https://github.com/drmaas/ratpack-kotlin</url> <inceptionYear>2016</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>drmaas</id> <name>Dan Maas</name> <email>drmaas@gmail.com</email> </developer> </developers> <scm> <connection>scm:https://drmaas@github.com/drmaas/ratpack-kotlin.git</connection> <developerConnection>scm:git://github.com/drmaas/ratpack-kotlin.git</developerConnection> <url>https://github.com/drmaas/ratpack-kotlin</url> </scm> <dependencies> <dependency> <groupId>me.drmaas</groupId> <artifactId>ratpack-kotlin-dsl</artifactId> <version>1.10.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-coroutines-core</artifactId> <version>1.3.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>1.3.41</version> <scope>compile</scope> </dependency> <dependency> <groupId>me.drmaas</groupId> <artifactId>ratpack-kotlin-test</artifactId> <version>1.10.0</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.2.3</version> <scope>test</scope> </dependency> <dependency> <groupId>io.kotlintest</groupId> <artifactId>kotlintest-runner-junit5</artifactId> <version>3.4.2</version> <scope>test</scope> </dependency> <dependency> <groupId>io.kotlintest</groupId> <artifactId>kotlintest-assertions</artifactId> <version>3.4.2</version> <scope>test</scope> </dependency> </dependencies> </project>