<?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> <groupId>website.tbd.developer.site</groupId> <artifactId>kotlin-testsuite</artifactId> <version>0.1.0-SNAPSHOT</version> <name>kotlin-testsuite</name> <url>http://developer.tbd.website</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <kotlin.jvm.target>17</kotlin.jvm.target> <kotlin.compiler.incremental>true</kotlin.compiler.incremental> <version.assertj>3.25.2</version.assertj> <version.kotlin>1.9.22</version.kotlin> <version.kotlin.compiler.incremental>true</version.kotlin.compiler.incremental> <version.junit-jupiter>5.10.1</version.junit-jupiter> <!-- TBD Dependencies --> <!-- These need to be uniformly updated as part of the single dependency script from Nick --> <version.tbdex>0.12.0-beta</version.tbdex> <!-- Test Dependencies --> <version.ktor>2.3.7</version.ktor> </properties> <dependencyManagement> <dependencies> <!-- External Dependencies --> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${version.assertj}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${version.junit-jupiter}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${version.junit-jupiter}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>${version.kotlin}</version> </dependency> <!-- TBD Dependencies --> <dependency> <groupId>xyz.block</groupId> <artifactId>tbdex</artifactId> <version>${version.tbdex}</version> </dependency> <!-- Hack: align versions misaligned between Web5 and tbDEX Remove when aligned upstream and Dev Site is upgraded to new tbDEX --> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-okhttp-jvm</artifactId> <version>${version.ktor}</version> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-content-negotiation-jvm</artifactId> <version>${version.ktor}</version> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-serialization-jackson-jvm</artifactId> <version>${version.ktor}</version> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-serialization-kotlinx-json-jvm</artifactId> <version>${version.ktor}</version> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-serialization-kotlinx-jvm</artifactId> <version>${version.ktor}</version> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-logging-jvm</artifactId> <version>${version.ktor}</version> </dependency> <!-- Test Dependencies --> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-server-netty-jvm</artifactId> <version>${version.ktor}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-server-content-negotiation-jvm</artifactId> <version>${version.ktor}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> </dependency> <!-- TBD Dependencies --> <dependency> <groupId>xyz.block</groupId> <artifactId>tbdex</artifactId> </dependency> <!-- Test Dependencies --> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-server-netty-jvm</artifactId> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>mockwebserver</artifactId> <version>4.11.0</version> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-server-test-host</artifactId> <version>${version.ktor}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-server-content-negotiation-jvm</artifactId> </dependency> </dependencies> <build> <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory> <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory> <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> <plugins> <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle --> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.1.0</version> </plugin> <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.0.2</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.1</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.0.2</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle --> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.7.1</version> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.0.0</version> </plugin> <plugin> <artifactId>kotlin-maven-plugin</artifactId> <groupId>org.jetbrains.kotlin</groupId> <version>${version.kotlin}</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>kotlin-maven-plugin</artifactId> <groupId>org.jetbrains.kotlin</groupId> <extensions>true</extensions> <configuration> <jvmTarget>${kotlin.jvm.target}</jvmTarget> </configuration> </plugin> </plugins> </build> <repositories> <repository> <id>tbd-oss-thirdparty</id> <name>tbd-oss-thirdparty</name> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> <url>https://blockxyz.jfrog.io/artifactory/tbd-oss-thirdparty-maven2/</url> </repository> <!-- More ALR Dark Arts, remove this once we are no longer relying on tbdex-kt:SNAPSHOTs --> <repository> <id>sonatype-oss-snapshots</id> <name>sonatype-oss-snapshots</name> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> <snapshots /> </repository> </repositories> </project>
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up