tbdex-httpserver
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>xyz.block</groupId>
<artifactId>tbdex-httpserver</artifactId>
<version>2.0.1</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/maven-v4_0_0.xsd">
<!-- Parent -->
<parent>
<groupId>xyz.block</groupId>
<artifactId>tbdex-parent</artifactId>
<version>2.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<!-- Model Version -->
<modelVersion>4.0.0</modelVersion>
<!-- Artifact Configuration -->
<artifactId>tbdex-httpserver</artifactId>
<name>tbDEX HTTP Server</name>
<description>HTTP Server for tbDEX</description>
<!-- Properties -->
<properties>
<!-- Versioning -->
</properties>
<!-- Dependencies -->
<dependencies>
<!-- tbDEX -->
<dependency>
<groupId>xyz.block</groupId>
<artifactId>tbdex-httpclient</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Direct Dependencies -->
<dependency>
<groupId>io.ktor</groupId>
<artifactId>ktor-server-content-negotiation-jvm</artifactId>
</dependency>
<dependency>
<groupId>io.ktor</groupId>
<artifactId>ktor-server-netty-jvm</artifactId>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>io.ktor</groupId>
<artifactId>ktor-client-auth-jvm</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.ktor</groupId>
<artifactId>ktor-client-content-negotiation-jvm</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.ktor</groupId>
<artifactId>ktor-server-test-host-jvm</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.mockk</groupId>
<artifactId>mockk</artifactId>
</dependency>
</dependencies>
<!-- Build Configuration -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>tbdex.sdk.httpserver.TbdexHttpServerKt</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>