godfather/pom.xml

230 lines
9.0 KiB
XML
Raw Normal View History

2019-01-24 22:20:26 +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>
2021-11-30 12:33:09 +03:00
<groupId>dev.struchkov.godfather</groupId>
<artifactId>godfather-bot</artifactId>
2022-04-25 11:39:53 +03:00
<version>0.0.4-SNAPSHOT</version>
2022-01-25 10:12:54 +03:00
<packaging>pom</packaging>
2021-11-30 12:33:09 +03:00
<modules>
<module>bot-context</module>
<module>bot-core</module>
</modules>
2019-04-29 12:13:19 +03:00
2021-11-30 12:33:09 +03:00
<name>GodFather Bot</name>
2022-04-08 21:31:01 +03:00
<description>Абстрактная бииблиотека для помощи в реализации библиотек ботов для конкретных социальных сетей
</description>
2021-11-30 12:33:09 +03:00
<url>https://github.com/Godfather-Bots/godfather</url>
2020-05-16 12:46:16 +03:00
<licenses>
<license>
<name>BSD 3-Clause "New" or "Revised" License</name>
2021-11-30 12:33:09 +03:00
<url>https://github.com/Godfather-Bots/godfather/blob/master/LICENSE</url>
2020-05-16 12:46:16 +03:00
</license>
</licenses>
2020-05-03 19:52:44 +03:00
2019-01-24 22:20:26 +03:00
<properties>
2022-01-25 10:12:54 +03:00
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2022-04-25 11:39:53 +03:00
<godfather.context.ver>0.0.4-SNAPSHOT</godfather.context.ver>
<godfather.core.ver>0.0.4-SNAPSHOT</godfather.core.ver>
2021-11-30 12:33:09 +03:00
<autoresponder.ver>1.9.4-RELEASE</autoresponder.ver>
<gson.ver>2.9.0</gson.ver>
2021-11-30 12:33:09 +03:00
<mail.ver>1.6.2</mail.ver>
<lombok.ver>1.18.22</lombok.ver>
<javax.persistence.api.ver>2.2</javax.persistence.api.ver>
<validation.api.ver>2.0.1.Final</validation.api.ver>
<slf4j.api.ver>1.7.36</slf4j.api.ver>
2021-12-01 09:30:31 +03:00
2022-01-25 10:14:17 +03:00
<plugin.maven.compiler.ver>3.9.0</plugin.maven.compiler.ver>
<plugin.nexus.staging.ver>1.6.12</plugin.nexus.staging.ver>
2021-12-01 09:30:31 +03:00
<plugin.maven.source.ver>3.2.1</plugin.maven.source.ver>
<plugin.maven.javadoc.ver>3.3.2</plugin.maven.javadoc.ver>
2021-12-01 09:30:31 +03:00
<plugin.maven.gpg.ver>3.0.1</plugin.maven.gpg.ver>
2019-01-24 22:20:26 +03:00
</properties>
2021-11-30 12:33:09 +03:00
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.ver}</version>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>javax.mail-api</artifactId>
<version>${mail.ver}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.ver}</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
<version>${javax.persistence.api.ver}</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>${validation.api.ver}</version>
</dependency>
<dependency>
<groupId>dev.struchkov.godfather</groupId>
<artifactId>bot-context</artifactId>
<version>${godfather.core.ver}</version>
</dependency>
2021-11-30 12:33:09 +03:00
<dependency>
<groupId>org.sadtech.autoresponder</groupId>
<artifactId>autoresponder</artifactId>
<version>${autoresponder.ver}</version>
</dependency>
2021-11-30 12:33:09 +03:00
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.api.ver}</version>
2021-11-30 12:33:09 +03:00
</dependency>
</dependencies>
</dependencyManagement>
2019-01-24 22:20:26 +03:00
2020-05-03 19:52:44 +03:00
<build>
2021-12-01 09:30:31 +03:00
<pluginManagement>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${plugin.nexus.staging.ver}</version>
2022-04-08 21:31:01 +03:00
<extensions>true</extensions>
2021-12-01 09:30:31 +03:00
<configuration>
<serverId>ossrh</serverId>
2021-12-01 10:31:50 +03:00
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
2021-12-01 09:30:31 +03:00
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${plugin.maven.compiler.ver}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
2021-12-01 09:30:31 +03:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${plugin.maven.source.ver}</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>${plugin.maven.javadoc.ver}</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>${plugin.maven.gpg.ver}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
2022-01-25 10:12:54 +03:00
</plugin>
2021-12-01 09:30:31 +03:00
</plugins>
</pluginManagement>
2020-05-03 19:52:44 +03:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
2020-05-03 19:52:44 +03:00
</plugins>
</build>
2022-01-25 10:12:54 +03:00
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
2021-12-01 09:30:31 +03:00
<scm>
<connection>scm:git:https://github.com/Godfather-Bots/godfather.git</connection>
<url>https://github.com/Godfather-Bots/godfathere</url>
<developerConnection>scm:git:https://github.com/Godfather-Bots/godfather.git</developerConnection>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
2019-05-27 10:26:19 +03:00
<developers>
<developer>
<id>uPagge</id>
<name>Struchkov Mark</name>
2021-12-01 09:30:31 +03:00
<email>mark@struchkov.dev</email>
<url>https://struchkov.dev</url>
2019-05-27 10:26:19 +03:00
</developer>
</developers>
2019-01-24 22:20:26 +03:00
</project>