godfather/bot-core/pom.xml

51 lines
1.7 KiB
XML
Raw Normal View History

2021-11-30 12:33:09 +03:00
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>dev.struchkov.godfather</groupId>
<artifactId>godfather-bot</artifactId>
<version>0.0.3-SNAPSHOT</version>
2021-11-30 12:33:09 +03:00
</parent>
<artifactId>bot-core</artifactId>
2021-12-01 09:30:31 +03:00
<version>${godfather.core.ver}</version>
2021-11-30 12:33:09 +03:00
<packaging>jar</packaging>
<name>Bot Core</name>
<description>Реализация основной логики для создания ботов без привязки к конкретным социальным сетям.</description>
2022-01-25 10:12:54 +03:00
<properties>
<skip.deploy>false</skip.deploy>
</properties>
2021-11-30 12:33:09 +03:00
<dependencies>
<dependency>
<groupId>dev.struchkov.godfather</groupId>
<artifactId>bot-context</artifactId>
</dependency>
<dependency>
<groupId>org.sadtech.autoresponder</groupId>
<artifactId>autoresponder</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2022-01-25 10:12:54 +03:00
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
2021-11-30 12:33:09 +03:00
<configuration>
2022-01-25 10:12:54 +03:00
<skipNexusStagingDeployMojo>${skip.deploy}</skipNexusStagingDeployMojo>
2021-11-30 12:33:09 +03:00
</configuration>
</plugin>
</plugins>
</build>
</project>