2020-02-03 12:22:53 +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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<version>2.2.4.RELEASE</version>
|
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
</parent>
|
2020-09-17 17:09:18 +03:00
|
|
|
<modules>
|
|
|
|
<module>telegram-bot</module>
|
|
|
|
<module>bitbucket-sdk</module>
|
|
|
|
<module>bot-core</module>
|
|
|
|
<module>bitbucket-app</module>
|
|
|
|
<module>bot-rest</module>
|
2020-09-22 14:35:27 +03:00
|
|
|
<module>teamcity</module>
|
2020-10-31 03:48:19 +03:00
|
|
|
<module>bitbucketbot-core</module>
|
|
|
|
<module>bitbucketbot-context</module>
|
|
|
|
<module>bitbucketbot-data</module>
|
2020-09-17 17:09:18 +03:00
|
|
|
</modules>
|
2020-09-16 06:58:53 +03:00
|
|
|
|
2020-06-01 09:08:12 +03:00
|
|
|
<groupId>org.sadtech.bot.bitbucketbot</groupId>
|
2020-02-03 12:22:53 +03:00
|
|
|
<artifactId>bitbucketbot</artifactId>
|
2020-10-24 12:56:24 +03:00
|
|
|
<version>3.0.0-RELEASE</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
<packaging>pom</packaging>
|
2020-02-03 12:22:53 +03:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<java.version>1.8</java.version>
|
2020-11-06 11:25:11 +03:00
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2020-09-17 17:09:18 +03:00
|
|
|
|
2020-10-24 12:56:24 +03:00
|
|
|
<org.sadtech.bot.bitbucket-app.version>3.0.0-RELEASE</org.sadtech.bot.bitbucket-app.version>
|
|
|
|
<org.sadtech.bot-core.version>3.0.0-RELEASE</org.sadtech.bot-core.version>
|
|
|
|
<org.sadtech.bot.teamcity-core.version>3.0.0-RELEASE</org.sadtech.bot.teamcity-core.version>
|
|
|
|
<org.sadtech.bot.teamcity-sdk.version>3.0.0-RELEASE</org.sadtech.bot.teamcity-sdk.version>
|
|
|
|
<org.sadtech.bot.bitbucket-sdk.version>3.0.0-RELEASE</org.sadtech.bot.bitbucket-sdk.version>
|
2020-11-06 11:25:11 +03:00
|
|
|
<org.sadtech.bot.bitbucket-context.version>3.0.0-RELEASE</org.sadtech.bot.bitbucket-context.version>
|
2020-10-24 12:56:24 +03:00
|
|
|
<org.sadtech.bot.rest.version>3.0.0-RELEASE</org.sadtech.bot.rest.version>
|
|
|
|
<org.sadtech.bot.telegram.version>3.0.0-RELEASE</org.sadtech.bot.telegram.version>
|
|
|
|
|
2020-10-24 12:43:55 +03:00
|
|
|
<org.sadtech.telegram.bot-core.version>0.0.1-DEVELOPER</org.sadtech.telegram.bot-core.version>
|
2020-09-17 17:09:18 +03:00
|
|
|
|
2020-10-24 12:43:55 +03:00
|
|
|
<sadtech.project.database.version>0.1.0-SNAPSHOT</sadtech.project.database.version>
|
|
|
|
<sadtech.project.filter.criteria.version>0.1.0-SNAPSHOT</sadtech.project.filter.criteria.version>
|
2020-09-17 17:09:18 +03:00
|
|
|
|
2020-10-24 12:43:55 +03:00
|
|
|
<javax.persistance.version>2.2</javax.persistance.version>
|
2020-09-17 17:09:18 +03:00
|
|
|
|
2020-10-24 12:43:55 +03:00
|
|
|
<hibernate.jpa-modelgen.version>6.0.0.Alpha5</hibernate.jpa-modelgen.version>
|
|
|
|
<google.guava.version>28.2-jre</google.guava.version>
|
2020-02-03 12:22:53 +03:00
|
|
|
</properties>
|
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
|
2020-10-24 12:43:55 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.sadtech.bot.bitbucketbot</groupId>
|
|
|
|
<artifactId>bot-rest</artifactId>
|
|
|
|
<version>${org.sadtech.bot.rest.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.sadtech.bot.bitbucketbot</groupId>
|
|
|
|
<artifactId>telegram-bot</artifactId>
|
|
|
|
<version>${org.sadtech.bot.telegram.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.sadtech.bot.bitbucketbot</groupId>
|
|
|
|
<artifactId>bot-core</artifactId>
|
2020-10-24 12:43:55 +03:00
|
|
|
<version>${org.sadtech.bot-core.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2020-10-24 12:43:55 +03:00
|
|
|
<groupId>org.sadtech.bot.bitbucketbot</groupId>
|
|
|
|
<artifactId>teamcity-sdk</artifactId>
|
|
|
|
<version>${org.sadtech.bot.teamcity-sdk.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
2020-11-06 11:25:11 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.sadtech.bot.bitbucketbot</groupId>
|
|
|
|
<artifactId>bitbucketbot-context</artifactId>
|
|
|
|
<version>${org.sadtech.bot.bitbucket-context.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
<dependency>
|
2020-10-24 12:43:55 +03:00
|
|
|
<groupId>org.sadtech.bot.bitbucketbot</groupId>
|
|
|
|
<artifactId>bitbucket-sdk</artifactId>
|
|
|
|
<version>${org.sadtech.bot.bitbucket-sdk.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2020-10-24 12:43:55 +03:00
|
|
|
<groupId>org.sadtech.bot.bitbucketbot</groupId>
|
|
|
|
<artifactId>teamcity-core</artifactId>
|
|
|
|
<version>${org.sadtech.bot.teamcity-core.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2020-10-24 12:43:55 +03:00
|
|
|
<groupId>org.sadtech.basic.filter</groupId>
|
|
|
|
<artifactId>criteria-filter</artifactId>
|
|
|
|
<version>${sadtech.project.filter.criteria.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2020-10-24 12:43:55 +03:00
|
|
|
<groupId>org.sadtech.basic</groupId>
|
|
|
|
<artifactId>project-database</artifactId>
|
|
|
|
<version>${sadtech.project.database.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2020-10-24 12:43:55 +03:00
|
|
|
<groupId>org.sadtech.telegram</groupId>
|
|
|
|
<artifactId>telegram-bot</artifactId>
|
|
|
|
<version>${org.sadtech.telegram.bot-core.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2020-10-24 12:43:55 +03:00
|
|
|
<groupId>org.hibernate.orm</groupId>
|
|
|
|
<artifactId>hibernate-jpamodelgen</artifactId>
|
|
|
|
<version>${hibernate.jpa-modelgen.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2020-10-24 12:43:55 +03:00
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>${google.guava.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
<artifactId>liquibase-core</artifactId>
|
2020-10-24 12:43:55 +03:00
|
|
|
<version>${liquibase.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
2020-10-24 12:43:55 +03:00
|
|
|
<version>${postgresql.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2020-02-03 12:22:53 +03:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2020-09-17 17:09:18 +03:00
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2020-10-24 12:43:55 +03:00
|
|
|
<version>2.2.4.RELEASE</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
2020-10-24 12:43:55 +03:00
|
|
|
<version>${okhttp3.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-09-22 14:35:27 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.persistence</groupId>
|
|
|
|
<artifactId>javax.persistence-api</artifactId>
|
2020-10-24 12:43:55 +03:00
|
|
|
<version>${javax.persistance.version}</version>
|
2020-09-22 14:35:27 +03:00
|
|
|
</dependency>
|
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2020-11-06 11:25:11 +03:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.0</version>
|
|
|
|
<configuration>
|
|
|
|
<source>8</source>
|
|
|
|
<target>8</target>
|
|
|
|
</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>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2020-03-28 06:15:14 +03:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>uPagge</id>
|
|
|
|
<name>Struchkov Mark</name>
|
2020-10-11 11:18:09 +03:00
|
|
|
<email>upagge@mail.ru</email>
|
2020-03-28 06:15:14 +03:00
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
2020-02-03 12:22:53 +03:00
|
|
|
</project>
|