<?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>com.nhl.bootique.parent</groupId>
		<artifactId>bootique-parent</artifactId>
		<version>0.10</version>
	</parent>

	<groupId>com.nhl.bootique</groupId>
	<artifactId>bootique-framework-parent</artifactId>
	<version>0.16</version>
	<packaging>pom</packaging>

	<name>Parent of Bootique - a minimally opinionated framework for runnable Java apps</name>
	<description>
		Parent of Bootique core framework, and Bootique docs.
	</description>

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

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

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