From 43082ebeeab0f642fbbc84b1a54abeb9a017db88 Mon Sep 17 00:00:00 2001 From: Chase22 Date: Fri, 10 Apr 2020 11:08:26 +0200 Subject: [PATCH] Fix gradle string in ability example The current version is 4.7. Also the compile configuration is deprecated and was replaced by implementation. See: https://docs.gradle.org/current/userguide/java_plugin.html#tab:configurations --- TelegramBots.wiki/abilities/Simple-Example.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TelegramBots.wiki/abilities/Simple-Example.md b/TelegramBots.wiki/abilities/Simple-Example.md index 3e3407c6..870b0f9d 100644 --- a/TelegramBots.wiki/abilities/Simple-Example.md +++ b/TelegramBots.wiki/abilities/Simple-Example.md @@ -14,7 +14,7 @@ As with any Java project, you will need to set your dependencies. ``` * **Gradle** ```groovy - compile group: 'org.telegram', name: 'telegrambots-abilities', version: 'permissions' + implementation group: 'org.telegram', name: 'telegrambots-abilities', version: '4.7' ``` * [JitPack](https://jitpack.io/#rubenlagus/TelegramBots)