telegram-bot/pom.xml

111 lines
4.5 KiB
XML
Raw Normal View History

2020-11-05 01:25:19 +03:00
<?xml version="1.0" encoding="UTF-8"?>
2020-11-05 01:58:15 +03:00
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2020-11-05 01:25:19 +03:00
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>
<groupId>org.sadtech.telegram</groupId>
<artifactId>telegram</artifactId>
<packaging>pom</packaging>
2020-11-05 01:58:15 +03:00
<version>0.0.1-RELEASE</version>
2020-11-05 01:25:19 +03:00
<modules>
<module>bot</module>
</modules>
2020-11-05 01:48:43 +03:00
<name>Telegram Bot</name>
<description>Allows you to create bots for Telegram</description>
<url>https://github.com/uPagge/telegram-bot</url>
<licenses>
<license>
<name>Apache 2 License</name>
<url>https://github.com/uPagge/telegram-bot/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/uPagge/telegram-bot.git</connection>
<url>https://github.com/uPagge/telegram-bot</url>
<developerConnection>scm:git:https://github.com/uPagge/telegram-bot.git</developerConnection>
2020-11-05 01:58:15 +03:00
<tag>release-0.0.1</tag>
2020-11-05 01:48:43 +03:00
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
2020-11-05 01:25:19 +03:00
</project>