eu.vendeli.telegram-bot
Owner: Vendelieu Crowford
A plugin for customizing and adding Telegram-bot library.
Sources: https://github.com/vendelieu/telegram-bot
Version 7.5.0 (latest)
7.5.0
Created 21 November 2024.
A plugin for customizing and adding Telegram-bot library.
Using the plugins DSL:
plugins {
id("eu.vendeli.telegram-bot") version "7.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("eu.vendeli:ktgram-gradle-plugin:7.5.0")
}
}
apply(plugin = "eu.vendeli.telegram-bot")
Using the plugins DSL:
plugins {
id "eu.vendeli.telegram-bot" version "7.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "eu.vendeli:ktgram-gradle-plugin:7.5.0"
}
}
apply plugin: "eu.vendeli.telegram-bot"