telegram-bot/telegram-core/pom.xml

59 lines
1.8 KiB
XML
Raw Normal View History

2020-11-05 01:25:19 +03:00
<?xml version="1.0" encoding="UTF-8"?>
2020-11-15 20:16:50 +03:00
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2020-11-05 01:25:19 +03:00
<modelVersion>4.0.0</modelVersion>
2020-11-15 20:16:50 +03:00
<parent>
2022-01-25 10:28:54 +03:00
<groupId>dev.struchkov.godfather</groupId>
<artifactId>telegram-bot</artifactId>
2022-04-14 15:24:37 +03:00
<version>0.0.3</version>
2020-11-15 20:16:50 +03:00
</parent>
2020-11-05 01:25:19 +03:00
2022-01-25 10:28:54 +03:00
<artifactId>telegram-core</artifactId>
2022-04-14 15:24:37 +03:00
<version>0.0.3</version>
2020-11-05 01:25:19 +03:00
2020-11-15 20:16:50 +03:00
<name>Telegram Core</name>
<description>Allows you to create bots for Telegram</description>
2022-01-25 10:28:54 +03:00
<properties>
<skip.deploy>false</skip.deploy>
</properties>
2020-11-15 20:16:50 +03:00
2020-11-05 01:25:19 +03:00
<dependencies>
<dependency>
2022-01-25 10:28:54 +03:00
<groupId>dev.struchkov.godfather</groupId>
<artifactId>bot-core</artifactId>
2020-11-05 01:25:19 +03:00
</dependency>
<dependency>
<groupId>org.telegram</groupId>
<artifactId>telegrambots</artifactId>
</dependency>
<dependency>
<groupId>org.telegram</groupId>
<artifactId>telegrambots-abilities</artifactId>
</dependency>
<dependency>
<groupId>org.telegram</groupId>
<artifactId>telegrambotsextensions</artifactId>
</dependency>
</dependencies>
2022-01-25 10:28:54 +03:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<configuration>
<skipNexusStagingDeployMojo>${skip.deploy}</skipNexusStagingDeployMojo>
</configuration>
</plugin>
</plugins>
</build>
2020-11-05 01:25:19 +03:00
</project>