<?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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>io.bootique.modules.parent</groupId>
		<artifactId>bootique-modules-parent</artifactId>
		<version>0.7</version>
	</parent>

	<groupId>io.bootique</groupId>
	<artifactId>bootique-framework-parent</artifactId>
	<version>0.23</version>
	<packaging>pom</packaging>

	<name>bootique-framework-parent</name>
	<description>Parent of Bootique core framework and Bootique docs.</description>

	<modules>
		<module>bootique</module>
		<module>bootique-test</module>
		<module>bootique-test-badspi-it</module>
		<module>bootique-docs</module>
	</modules>

	<scm>
        <developerConnection>scm:git:ssh://git@github.com/bootique/bootique</developerConnection>
        <url>https://github.com/bootique/bootique</url>
        <tag>bootique-framework-parent-0.23</tag>
    </scm>

    <distributionManagement>
        <repository>
            <id>bintray-bootique-releases</id>
            <name>bintray-bootique-releases</name>
            <url>https://api.bintray.com/maven/bootique/releases/bootique/;publish=1</url>
        </repository>
    </distributionManagement>

	<!-- Optional profile used to sign artifacts -->
	<profiles>
		<profile>
			<id>gpg</id>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-gpg-plugin</artifactId>
						<executions>
							<execution>
								<id>sign-artifacts</id>
								<phase>verify</phase>
								<goals>
									<goal>sign</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
</project>
