gitlab-notification/bot-data/pom.xml

73 lines
2.5 KiB
XML
Raw Normal View History

2020-10-31 03:48:19 +03:00
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
2021-01-13 20:39:37 +03:00
<artifactId>gitlab-bot</artifactId>
<groupId>org.sadtech.bot.gitlab</groupId>
2020-11-16 16:57:28 +03:00
<version>3.0.1-RELEASE</version>
2020-10-31 03:48:19 +03:00
</parent>
<modelVersion>4.0.0</modelVersion>
2021-01-13 20:39:37 +03:00
<artifactId>bot-data</artifactId>
<version>${gitlab.data.version}</version>
2020-10-31 03:48:19 +03:00
2021-01-13 20:39:37 +03:00
<name>GitLab Server Data</name>
2020-11-16 12:56:31 +03:00
<description>Implementation of the Bitbucket server version repository layer</description>
<url>https://github.com/uPagge/bitbucketbot</url>
2020-10-31 03:48:19 +03:00
<dependencies>
<dependency>
2021-01-13 20:39:37 +03:00
<groupId>org.sadtech.bot.gitlab</groupId>
<artifactId>bot-context</artifactId>
2020-10-31 03:48:19 +03:00
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
</dependency>
<dependency>
2020-11-15 20:39:35 +03:00
<groupId>org.sadtech.haiti.data</groupId>
<artifactId>haiti-database</artifactId>
2020-10-31 03:48:19 +03:00
</dependency>
</dependencies>
2020-11-15 21:52:35 +03:00
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<configuration>
2020-11-16 16:57:28 +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>
</plugins>
</build>
<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-10-31 03:48:19 +03:00
</project>