ktor-query-params-openapi-generator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.falsetrue</groupId> <artifactId>ktor-query-params-openapi-generator</artifactId> <version>0.2.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 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>net.falsetrue</groupId> <artifactId>ktor-query-params-openapi-generator</artifactId> <version>0.2.0</version> <name>Ktor Query Params Library</name> <description>Performs the automatic generation of Swagger definitions for Ktor endpoints that uses ktor-query-parameters</description> <url>https://github.com/Vladiatro/ktor-query-params/ktor-query-params-openapi-generator</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>Vladiatro</id> <name>Vladislav Miachikov</name> <email>vladiator1024@gmail.com</email> </developer> </developers> <scm> <connection>git@github.com:Vladiatro/ktor-query-params.git</connection> <developerConnection>git@github.com:Vladiatro/ktor-query-params.git</developerConnection> <url>https://github.com/Vladiatro/ktor-query-params</url> </scm> <dependencies> <dependency> <groupId>io.swagger</groupId> <artifactId>swagger-core</artifactId> <version>1.6.11</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>1.9.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>net.falsetrue</groupId> <artifactId>ktor-query-params</artifactId> <version>0.2.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-server-core-jvm</artifactId> <version>2.3.3</version> <scope>runtime</scope> </dependency> </dependencies> </project>