bybit-kotlin-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.alleyway</groupId> <artifactId>bybit-kotlin-api</artifactId> <version>0.6.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.alleyway</groupId> <artifactId>bybit-kotlin-api</artifactId> <version>0.6.0</version> <packaging>jar</packaging> <name>bybit kotlin api</name> <description>Library for interfacing with ByBit written in Kotlin</description> <url>https://github.com/alleyway/bybit-kotlin-api</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <kotlin.code.style>official</kotlin.code.style> <kotlin.compiler.jvmTarget>17</kotlin.compiler.jvmTarget> <kotlin.compiler.incremental>false</kotlin.compiler.incremental> <kotlin.compiler.languageVersion>1.9</kotlin.compiler.languageVersion> <kotlin.experimental.tryK2>false</kotlin.experimental.tryK2> <kotlin.version>1.9.22</kotlin.version> <ktor.version>3.0.0-beta-1</ktor.version> <slf4j.version>2.0.7</slf4j.version> </properties> <scm> <connection>scm:git:git://github.com/alleyway/bybit-kotlin-api.git</connection> <developerConnection>scm:git:git://github.com/alleyway/bybit-kotlin-api.git</developerConnection> <url>https://github.com/alleyway/bybit-kotlin-api</url> </scm> <developers> <developer> <id>mlake900</id> <name>Michael L</name> <email>mlake@alleywayapps.com</email> </developer> </developers> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/mit</url> <distribution>repo</distribution> </license> </licenses> <repositories> <repository> <id>mavenCentral</id> <url>https://repo1.maven.org/maven2/</url> </repository> <!-- <repository>--> <!-- <id>jCenter</id>--> <!-- <url>https://jcenter.bintray.com/maven2/</url>--> <!-- </repository>--> <!-- <repository>--> <!-- <id>ossrh</id>--> <!-- <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>--> <!-- <snapshots>--> <!-- <enabled>true</enabled>--> <!-- </snapshots>--> <!-- </repository>--> </repositories> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <profiles> <profile> <id>release</id> <properties> <kotlin.compiler.incremental>false</kotlin.compiler.incremental> <dokka.includes>docs/dokka</dokka.includes> </properties> <build> <plugins> <!-- We need to include sources when publishing to Maven Central --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.jetbrains.dokka</groupId> <artifactId>dokka-maven-plugin</artifactId> <version>1.8.10</version> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>javadocJar</goal> </goals> </execution> </executions> <configuration> <jdkVersion>17</jdkVersion> <suppressObviousFunctions>true</suppressObviousFunctions> <reportUndocumented>true</reportUndocumented> <suppressInheritedMembers>true</suppressInheritedMembers> <sourceLinks> <link> <path>${basedir}/src/main/kotlin</path> <url>https://github.com/alleyway/bybit-kotlin-api/blob/main/src/main/kotlin</url> <lineSuffix>#L</lineSuffix> </link> </sourceLinks> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.0.0</version> </plugin> </plugins> </build> </profile> </profiles> <build> <sourceDirectory>${basedir}/src/main/kotlin</sourceDirectory> <testSourceDirectory>${basedir}/src/test/kotlin</testSourceDirectory> <resources> <resource> <directory>${basedir}/src/main/resources</directory> <filtering>true</filtering> <excludes> <exclude>bybit.properties</exclude> </excludes> </resource> </resources> <testResources> <testResource> <directory>${basedir}/src/test/resources</directory> </testResource> </testResources> <plugins> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin.version}</version> <executions> <execution> <id>compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>test-compile</id> <phase>test-compile</phase> <goals> <goal>test-compile</goal> </goals> </execution> </executions> <configuration> <jvmTarget>17</jvmTarget> <compilerPlugins> <plugin>kotlinx-serialization</plugin> </compilerPlugins> </configuration> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-serialization</artifactId> <version>${kotlin.version}</version> </dependency> </dependencies> </plugin> <!-- We don't use Java, so lets disable the Java compiler plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <source>17</source> <target>17</target> </configuration> <executions> <execution> <id>default-compile</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> </plugin> <!-- <plugin>--> <!-- <groupId>com.github.ozsie</groupId>--> <!-- <artifactId>detekt-maven-plugin</artifactId>--> <!-- <version>1.22.0</version>--> <!-- <configuration>--> <!-- <config>detekt.yml</config>--> <!-- </configuration>--> <!-- <executions>--> <!-- <execution>--> <!-- <phase>verify</phase>--> <!-- <goals>--> <!-- <goal>check</goal>--> <!-- </goals>--> <!-- </execution>--> <!-- </executions>--> <!-- </plugin>--> </plugins> </build> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-test-junit5</artifactId> <version>${kotlin.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-core-jvm</artifactId> <version>${ktor.version}</version> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-websockets-jvm</artifactId> <version>${ktor.version}</version> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-okhttp-jvm</artifactId> <version>${ktor.version}</version> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-cio-jvm</artifactId> <version>${ktor.version}</version> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-content-negotiation-jvm</artifactId> <version>${ktor.version}</version> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-serialization-kotlinx-json-jvm</artifactId> <version>${ktor.version}</version> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-encoding-jvm</artifactId> <version>${ktor.version}</version> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-encoding</artifactId> <version>${ktor.version}</version> <scope>implementation</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.28</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.github.resilience4j</groupId> <artifactId>resilience4j-kotlin</artifactId> <version>2.2.0</version> </dependency> <dependency> <groupId>io.github.resilience4j</groupId> <artifactId>resilience4j-ratelimiter</artifactId> <version>2.2.0</version> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-coroutines-core</artifactId> <version>1.7.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> <version>1.9.22</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>1.9.22</version> <scope>test</scope> </dependency> </dependencies> </project>