tehanu-client-telegram
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>be.rlab</groupId> <artifactId>tehanu-client-telegram</artifactId> <version>3.3.5</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>be.rlab</groupId> <artifactId>tehanu</artifactId> <version>3.3.5</version> </parent> <artifactId>tehanu-client-telegram</artifactId> <packaging>jar</packaging> <version>3.3.5</version> <name>Tehanu - Telegram client</name> <description> Tehanu is a Telegram bot for Kotlin. This artifact contains the main components and it can be used alone to embed the bot into another application. This is the Telegram client implementation. </description> <url>https://git.rlab.be/seykron/tehanu</url> <licenses> <license> <name>GPL Version 2.0</name> <url>https://www.gnu.org/licenses/old-licenses/gpl-2.0.html</url> <distribution>repo</distribution> <comments>Free Software License</comments> </license> </licenses> <developers> <developer> <id>seykron</id> <name>seykron</name> <email>seykron@rlab.be</email> <organization>R'lyeh Hacklab</organization> <organizationUrl>https://rlab.be</organizationUrl> <roles> <role>developer</role> </roles> <timezone>America/Argentina/Buenos_Aires</timezone> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <kotlin.code.style>official</kotlin.code.style> </properties> <dependencies> <!-- Kotlin --> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-test-junit</artifactId> </dependency> <!-- Test --> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</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> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-inline</artifactId> </dependency> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> </dependency> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy-agent</artifactId> </dependency> <dependency> <groupId>org.mockito.kotlin</groupId> <artifactId>mockito-kotlin</artifactId> </dependency> <!-- Tehanu core --> <dependency> <groupId>be.rlab</groupId> <artifactId>tehanu-core</artifactId> <version>${version}</version> </dependency> <!-- Telegram --> <dependency> <groupId>io.github.kotlin-telegram-bot.kotlin-telegram-bot</groupId> <artifactId>telegram</artifactId> </dependency> <dependency> <groupId>com.squareup.retrofit2</groupId> <artifactId>retrofit</artifactId> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>logging-interceptor</artifactId> </dependency> </dependencies> <build> <finalName>tehanu-client-telegram</finalName> <sourceDirectory>${basedir}/src/main/kotlin</sourceDirectory> <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory> <resources> <resource> <directory>src/main/resources</directory> <excludes> <exclude>logback.xml</exclude> </excludes> </resource> </resources> </build> </project>