alice-ktx
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.danbeldev</groupId> <artifactId>alice-ktx</artifactId> <version>1.0.1</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>io.github.danbeldev</groupId> <artifactId>alice-ktx</artifactId> <version>1.0.1</version> <name>alice-ktx</name> <description>Асинхронный фреймворк для разработки навыков Алисы из Яндекс.Диалогов</description> <url>https://github.com/danbeldev/alice-ktx</url> <inceptionYear>2024</inceptionYear> <licenses> <license> <name>MIT</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <id>danbel</id> <name>DanBel</name> <email>dan.bel.89@bk.ru</email> </developer> </developers> <scm> <url>https://github.com/danbeldev/alice-ktx</url> </scm> <dependencyManagement> <dependencies> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-bom</artifactId> <version>3.0.1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>2.0.21</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-server-content-negotiation-jvm</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-server-core-jvm</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-server-netty-jvm</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-core-jvm</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-cio-jvm</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-content-negotiation-jvm</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.5.6</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-serialization-kotlinx-json-jvm</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>io.lettuce</groupId> <artifactId>lettuce-core</artifactId> <version>6.5.0.RELEASE</version> <scope>runtime</scope> </dependency> </dependencies> </project>