logbook-ktor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.zalando</groupId> <artifactId>logbook-ktor</artifactId> <version>3.12.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.zalando</groupId> <artifactId>logbook-parent</artifactId> <version>3.12.3</version> <relativePath>../logbook-parent/pom.xml</relativePath> </parent> <artifactId>logbook-ktor</artifactId> <name>${artifactId}</name> <properties> <maven.test.skip>true</maven.test.skip> </properties> <dependencies> <dependency> <groupId>org.zalando</groupId> <artifactId>logbook-ktor-client</artifactId> </dependency> <dependency> <groupId>org.zalando</groupId> <artifactId>logbook-ktor-server</artifactId> </dependency> </dependencies> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.jetbrains.dokka</groupId> <artifactId>dokka-maven-plugin</artifactId> <version>2.0.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>javadocJar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>