Compare commits

...

3 Commits

Author SHA1 Message Date
Struchkov Mark 6e11f53a8c
[maven-release-plugin] prepare for next development iteration
continuous-integration/drone/push Build is passing Details
2023-03-29 01:22:18 +03:00
Struchkov Mark 7e3f8343f3
[maven-release-plugin] prepare release v.0.0.54 2023-03-29 01:22:17 +03:00
Struchkov Mark aa64f06dd8
Поправил стартер 2023-03-29 01:21:47 +03:00
2 changed files with 4 additions and 3 deletions

View File

@ -10,7 +10,7 @@
<groupId>dev.struchkov.godfather.telegram</groupId>
<artifactId>telegram-bot-spring-boot-starter</artifactId>
<version>0.0.54-SNAPSHOT</version>
<version>0.0.55-SNAPSHOT</version>
<properties>
<java.version>17</java.version>
@ -19,8 +19,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<telegram.bot.version>0.0.54-SNAPSHOT</telegram.bot.version>
<godfather.version>0.0.55-SNAPSHOT</godfather.version>
<godfather.version>0.0.55</godfather.version>
<telegram.bot.version>0.0.54</telegram.bot.version>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
<plugin.maven.compiler.ver>3.10.1</plugin.maven.compiler.ver>

View File

@ -214,6 +214,7 @@ public class TelegramBotAutoconfiguration {
@Bean
@ConditionalOnBean(EventDispatching.class)
@ConditionalOnMissingBean(EventDistributor.class)
public EventDistributor eventDistributor(
TelegramConnect telegramConnect, EventDispatching eventDispatching
) {