ktor-service-discoverer
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.damirdenis-tudor</groupId> <artifactId>ktor-service-discoverer</artifactId> <version>1.1.4</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-service-discoverer</artifactId> <version>1.1.4</version> <name>Ktor Service Discoverer Plugin</name> <description>This plugin facilitates interaction with service replicas, abstracting service discovery and load balancing mechanisms.</description> <url>https://github.com/DamirDenis-Tudor/ktor-service-discovery/tree/main/ktor-service-discoverer</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-service-discovery.git</connection> <developerConnection>scm:git:git@github.com:DamirDenis-Tudor/ktor-service-discovery.git</developerConnection> <url>https://github.com/DamirDenis-Tudor/ktor-service-discovery</url> </scm> <dependencyManagement> <dependencies> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-bom</artifactId> <version>3.0.2</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <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> <scope>runtime</scope> <version>unspecified</version> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-server-netty-jvm</artifactId> <scope>runtime</scope> <version>unspecified</version> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-core-jvm</artifactId> <version>3.0.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-cio-jvm</artifactId> <version>3.0.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-content-negotiation-jvm</artifactId> <version>3.0.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-serialization-kotlinx-json-jvm</artifactId> <version>3.0.2</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>io.ktor</groupId> <artifactId>ktor-server-config-yaml-jvm</artifactId> <scope>runtime</scope> <version>unspecified</version> </dependency> </dependencies> </project>