<?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>

	<parent>
		<groupId>com.github.bitmc</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>2.4.1.1</version>
	</parent>

	<artifactId>flyway-parent</artifactId>
	<version>7.4.0.0</version>
	<packaging>pom</packaging>

	<name>Flyway</name>
	<description>Custom implementation of Flyway</description>
	<url>https://github.com/bitmc/flyway</url>
	<inceptionYear>2020</inceptionYear>

	<modules>
		<module>flyway-core</module>
	</modules>

	<scm>
		<connection>scm:git:git@github.com:bitmc/flyway.git</connection>
		<developerConnection>scm:git:ssh://git@github.com/bitmc/flyway.git</developerConnection>
		<url>https://github.com/bitmc/flyway</url>
		<tag>7.4.0.0</tag>
	</scm>

	<properties>
		<bitmc-checkstyle.version>8.39.0</bitmc-checkstyle.version>
		<flyway.version>7.4.0</flyway.version>
	</properties>

	<repositories>
		<repository>
			<id>central</id>
			<url>https://repo.maven.apache.org/maven2</url>
		</repository>
		<repository>
			<id>sonatype</id>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
		</repository>
	</repositories>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-checkstyle-plugin</artifactId>
				<configuration>
					<configLocation>com/github/bitmc/checkstyle/checks.xml</configLocation>
				</configuration>
				<dependencies>
					<dependency>
						<groupId>com.github.bitmc</groupId>
						<artifactId>checkstyle</artifactId>
						<version>${bitmc-checkstyle.version}</version>
					</dependency>
				</dependencies>
			</plugin>
		</plugins>
	</build>

	<profiles>
		<profile>
			<id>gpg</id>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-gpg-plugin</artifactId>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>

</project>
