Пишу документацию
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Struchkov Mark 2023-03-15 20:07:48 +03:00
parent 245254628a
commit 767e4182bb
Signed by: upagge
GPG Key ID: D3018BE7BA428CA6
3 changed files with 12 additions and 1 deletions

View File

@ -19,6 +19,8 @@ nav:
- Гайды:
- Безопасность: guides/security.md
- Циклическая зависимость: guides/cyclic.md
- Обработка ошибок: guides/event-handler.md
- Обработка событий: guides/event-handler.md
- Архитектура:
- Основная идея: architecture/general.md
- ChangeLog: changelog/index.md

11
pom.xml
View File

@ -37,7 +37,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<godfather.core.ver>0.0.52</godfather.core.ver>
<godfather.core.ver>0.0.53-SNAPSHOT</godfather.core.ver>
<!-- https://mvnrepository.com/artifact/org.telegram/telegrambots -->
<telegrambots.ver>6.3.0</telegrambots.ver>
@ -248,6 +248,15 @@
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
<version>1.18.26</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>