From ea224fd7656924b3ddfbbb6ca2fdf2b04f8212dd Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Thu, 14 May 2020 21:18:33 +0600 Subject: [PATCH] add javax.activation dependency --- CHANGELOG.md | 2 +- TelegramBotAPI/build.gradle | 2 ++ gradle.properties | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9534633ac..f11d6eb60b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -52,7 +52,7 @@ ### 0.27.3 * `TelegramBotAPI`: - * Currently `UpdateDeserializationStrategy` is publicly available + * `UpdateDeserializationStrategy` is publicly available now * All `setWebhook` extensions was marked as deprecated and replaced into `TelegramBotAPI-extensions-utils` * Typealias `ExceptionHandler` was added - it will be used for `handleSafely` * `TelegramBotAPI-extensions-api`: diff --git a/TelegramBotAPI/build.gradle b/TelegramBotAPI/build.gradle index c475e31eed..583e4cf72d 100644 --- a/TelegramBotAPI/build.gradle +++ b/TelegramBotAPI/build.gradle @@ -64,6 +64,8 @@ kotlin { api "io.ktor:ktor-server-host-common:$ktor_version" api "io.ktor:ktor-client-cio:$ktor_version" + + api "javax.activation:activation:$javax_activation_version" } } jvmTest { diff --git a/gradle.properties b/gradle.properties index fa3887df82..6a07572a4d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,6 +6,8 @@ klock_version=1.11.1 uuid_version=0.1.0 ktor_version=1.3.2 +javax_activation_version=1.1.1 + library_group=com.github.insanusmokrassar library_version=0.27.3