2020-09-17 17:09:18 +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">
|
|
|
|
<parent>
|
2021-01-13 20:39:37 +03:00
|
|
|
<groupId>org.sadtech.bot.gitlab</groupId>
|
|
|
|
<artifactId>gitlab-bot</artifactId>
|
2020-11-16 16:57:28 +03:00
|
|
|
<version>3.0.1-RELEASE</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2021-01-13 20:39:37 +03:00
|
|
|
<artifactId>gitlab-app</artifactId>
|
|
|
|
<version>${gitlab.app.version}</version>
|
2020-09-17 17:09:18 +03:00
|
|
|
|
2020-11-16 12:56:31 +03:00
|
|
|
<name>Parent Bitbucket Server Notify Bot</name>
|
|
|
|
<description>Notifications about Bitbucket Server events in Telegram</description>
|
|
|
|
<url>https://github.com/uPagge/bitbucketbot</url>
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>Apache License, Version 2.0</name>
|
|
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
|
|
|
<comments>
|
|
|
|
Copyright 2010 the original author or authors.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
|
|
implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
</comments>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<organization>
|
|
|
|
<name>SADTECH</name>
|
|
|
|
<url>https://sadtech.org</url>
|
|
|
|
</organization>
|
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
2021-01-13 20:39:37 +03:00
|
|
|
<groupId>org.sadtech.bot.gitlab</groupId>
|
|
|
|
<artifactId>bot-core</artifactId>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2021-01-13 20:39:37 +03:00
|
|
|
<groupId>org.sadtech.bot.gitlab</groupId>
|
|
|
|
<artifactId>bot-data</artifactId>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2021-01-13 20:39:37 +03:00
|
|
|
<groupId>org.sadtech.bot.gitlab</groupId>
|
2020-09-17 17:09:18 +03:00
|
|
|
<artifactId>telegram-bot</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2021-01-13 20:39:37 +03:00
|
|
|
<groupId>org.sadtech.bot.gitlab</groupId>
|
2020-09-22 14:35:27 +03:00
|
|
|
<artifactId>teamcity-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2021-01-13 20:39:37 +03:00
|
|
|
<groupId>org.sadtech.bot.gitlab</groupId>
|
|
|
|
<artifactId>gitlab-sdk</artifactId>
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependency>
|
|
|
|
|
2021-01-14 13:10:53 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.sadtech.haiti</groupId>
|
|
|
|
<artifactId>haiti-utils</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
<artifactId>liquibase-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
2021-01-14 21:47:12 +03:00
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2020-09-18 08:34:55 +03:00
|
|
|
<configuration>
|
2021-01-14 13:10:53 +03:00
|
|
|
<finalName>gitlab-notification</finalName>
|
2020-09-18 08:34:55 +03:00
|
|
|
</configuration>
|
2020-09-17 17:09:18 +03:00
|
|
|
</plugin>
|
2020-11-15 21:52:35 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
2020-11-16 12:56:31 +03:00
|
|
|
<skipNexusStagingDeployMojo>false</skipNexusStagingDeployMojo>
|
2020-11-15 21:52:35 +03:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-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-gpg-plugin</artifactId>
|
|
|
|
</plugin>
|
2020-09-17 17:09:18 +03:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2020-11-15 21:52:35 +03:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>uPagge</id>
|
|
|
|
<name>Struchkov Mark</name>
|
|
|
|
<email>upagge@ya.ru</email>
|
|
|
|
<organization>SADTECH</organization>
|
|
|
|
<organizationUrl>https://sadtech.org</organizationUrl>
|
|
|
|
<url>https://uPagge.sadtech.org</url>
|
|
|
|
<roles>
|
|
|
|
<role>Project lead</role>
|
|
|
|
</roles>
|
|
|
|
<timezone>+3</timezone>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
2020-09-17 17:09:18 +03:00
|
|
|
</project>
|