ktor-server-rabbitmq
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.damirdenis-tudor</groupId> <artifactId>ktor-server-rabbitmq</artifactId> <version>1.3.3</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.damirdenis-tudor</groupId> <artifactId>ktor-server-rabbitmq</artifactId> <version>1.3.3</version> <name>Ktor rabbitMQ plugin</name> <description>KabbitMQ is a Ktor plugin for RabbitMQ that provides access to all the core functionalities of the com.rabbitmq:amqp-client. It integrates seamlessly with Ktor's DSL, offering readable, maintainable, and easy-to-use functionalities. </description> <url>https://github.com/DamirDenis-Tudor/ktor-server-rabbitmq</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>DamirDenis-Tudor</id> <name>Damir Denis-Tudor</name> <email>denis-tudor.damir@student.tuiasi.ro</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/DamirDenis-Tudor/ktor-server-rabbitmq.git</connection> <developerConnection>scm:git:git@github.com:DamirDenis-Tudor/ktor-server-rabbitmq.git</developerConnection> <url>https://github.com/DamirDenis-Tudor/ktor-server-rabbitmq</url> </scm> <dependencies> <dependency> <groupId>com.rabbitmq</groupId> <artifactId>amqp-client</artifactId> <version>5.24.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>2.1.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-server-core-jvm</artifactId> <version>3.0.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-server-netty-jvm</artifactId> <version>3.0.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-serialization-json-jvm</artifactId> <version>1.8.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.5.15</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-coroutines-core-jvm</artifactId> <version>1.10.1</version> <scope>runtime</scope> </dependency> </dependencies> </project>