gitlab-notification/bitbucket-app/pom.xml

81 lines
2.5 KiB
XML
Raw Normal View History

<?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>
<groupId>org.sadtech.bot.bitbucketbot</groupId>
2020-11-15 20:39:35 +03:00
<artifactId>bitbucketbot</artifactId>
2020-10-24 12:56:24 +03:00
<version>3.0.0-RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>bitbucket-app</artifactId>
2020-11-15 20:39:35 +03:00
<version>${sadtech.bitbucketbot.app.version}</version>
<dependencies>
2020-10-31 03:48:19 +03:00
<dependency>
<groupId>org.sadtech.bot.bitbucketbot</groupId>
<artifactId>bitbucketbot-core</artifactId>
</dependency>
<dependency>
<groupId>org.sadtech.bot.bitbucketbot</groupId>
2020-11-15 20:39:35 +03:00
<artifactId>bot-core</artifactId>
2020-10-31 03:48:19 +03:00
</dependency>
<dependency>
<groupId>org.sadtech.bot.bitbucketbot</groupId>
2020-11-15 20:39:35 +03:00
<artifactId>bitbucketbot-data</artifactId>
</dependency>
<dependency>
<groupId>org.sadtech.bot.bitbucketbot</groupId>
<artifactId>bot-rest</artifactId>
</dependency>
<dependency>
<groupId>org.sadtech.bot.bitbucketbot</groupId>
<artifactId>telegram-bot</artifactId>
</dependency>
<dependency>
<groupId>org.sadtech.bot.bitbucketbot</groupId>
2020-09-22 14:35:27 +03:00
<artifactId>teamcity-core</artifactId>
</dependency>
<dependency>
<groupId>org.sadtech.bot.bitbucketbot</groupId>
<artifactId>bitbucket-sdk</artifactId>
</dependency>
<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>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
2020-09-18 08:34:55 +03:00
<configuration>
<finalName>bitbucketbot</finalName>
</configuration>
</plugin>
</plugins>
</build>
</project>