vkbot-quick
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.sadtech.vk.bot</groupId> <artifactId>vkbot-quick</artifactId> <version>1.0.0-RELEASE</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.sadtech.vk.bot</groupId> <artifactId>vkbot-quick</artifactId> <version>1.0.0-RELEASE</version> <packaging>jar</packaging> <name>vkbot-quick</name> <description>Быстрое создание бота для группы ВКонтакте.</description> <url>https://github.com/uPagge/vkbot-quick</url> <licenses> <license> <name>BSD 3-Clause "New" or "Revised" License</name> <url>https://github.com/uPagge/vkbot-quick/blob/develop/LICENSE</url> </license> </licenses> <scm> <connection>scm:git:https://github.com/uPagge/vkbot-quick.git</connection> <url>https://github.com/uPagge/vkbot-quick</url> <developerConnection>scm:git:https://github.com/uPagge/vkbot-quick.git</developerConnection> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <java.version>1.8</java.version> <vkbot.ver>1.0.0-RELEASE</vkbot.ver> </properties> <dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.12</version> <optional>true</optional> </dependency> <dependency> <groupId>org.sadtech.vk.bot</groupId> <artifactId>vkbot-sdk</artifactId> <version>${vkbot.ver}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> </plugins> </build> <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> <developers> <developer> <id>uPagge</id> <name>Struchkov Mark</name> <organization>SADTECH</organization> <organizationUrl>https://sadtech.org</organizationUrl> <email>upagge@mail.ru</email> </developer> </developers> </project>