spring-boot-starter-telegram-bot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.medianik5</groupId> <artifactId>spring-boot-starter-telegram-bot</artifactId> <version>0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>io.github.medianik5</groupId> <artifactId>spring-boot-starter-telegram-bot</artifactId> <version>0.1</version> <packaging>pom</packaging> <name>io.github.medianik5:spring-boot-starter-telegram-bot</name> <description>Spring boot starter for telegram bot, allowing to create telegram bot with spring boot and use Controller-like programming style</description> <url>https://github.com/MediaNik5/spring-boot-starter-telegram-bot</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Nikita Rostovtsev</name> <email>stafilopok@mail.ru</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/MediaNik5/spring-boot-starter-telegram-bot.git</connection> <developerConnection>scm:git:ssh://github.com:MediaNik5/spring-boot-starter-telegram-bot.git</developerConnection> <url>http://github.com/MediaNik5/spring-boot-starter-telegram-bot/tree/master</url> </scm> <dependencies> <dependency> <groupId>dev.inmo</groupId> <artifactId>tgbotapi-jvm</artifactId> <version>2.1.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>dev.inmo</groupId> <artifactId>tgbotapi.core-jvm</artifactId> <version>2.1.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>dev.inmo</groupId> <artifactId>tgbotapi.api-jvm</artifactId> <version>2.1.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>dev.inmo</groupId> <artifactId>tgbotapi.utils-jvm</artifactId> <version>2.1.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> <version>1.6.21</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>1.6.21</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.10.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> <scope>runtime</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.7.1</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> </project>