<?xml version="1.0" encoding="UTF-8"?>
<!--

    @formatter:off
    Copyright © 2019 admin (admin@infrastructurebuilder.org)

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    @formatter:on

-->
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<!-- A reasonable base group -->
	<groupId>org.infrastructurebuilder</groupId>
	<artifactId>ibparent-minimal</artifactId>
	<version>82</version>
	<packaging>pom</packaging>

	<name>${project.artifactId}</name>
	<description>Root POM set for IB projects</description>
	<url>https://github.com/${team.group.id}/${project.artifactId}</url>
	<inceptionYear>2019</inceptionYear>
	<organization>
		<name>InfrastructureBuilder</name>
		<url>http://www.infrastructurebuilder.org</url>
	</organization>
	<licenses>
		<license>
			<name>Apache License, Version 2.0</name>
			<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
			<comments>A business-friendly OSS license</comments>
		</license>
	</licenses>

	<developers>
		<developer>
			<id>admin</id>
			<email>admin@infrastructurebuilder.org</email>
			<roles>
				<role>admin (Direct general Email here)</role>
			</roles>
		</developer>
		<developer>
			<id>mykelalvis</id>
			<email>Mykel.Alvis@infrastructurebuilder.org</email>
			<roles>
				<role>Developer</role>
			</roles>
			<timezone>Central</timezone>
		</developer>
		<developer>
			<id>byronic</id>
			<email>byron (dot) lagrone (at) gmail (dot) com</email>
			<roles>
				<role>Developer</role>
			</roles>
			<timezone>Central</timezone>
		</developer>
	</developers>

	<scm>
		<connection>scm:git:${git.url}</connection>
		<developerConnection>scm:git:${git.url}</developerConnection>
		<url>${git.scm.url}</url>
		<tag>ibparent-minimal-82</tag>
	</scm>
	<issueManagement>
		<url>${issue.management.url}</url>
		<system>GitHub</system>
	</issueManagement>
	<distributionManagement>
		<snapshotRepository>
			<id>ossrh</id>
			<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
		</snapshotRepository>
		<repository>
			<id>ossrh</id>
			<url>
				https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
		</repository>
	</distributionManagement>

	<properties>
		<gpg.signing.profiles>run-its,release,IBgpgsigning</gpg.signing.profiles>
		<ib.source.formats.version>0.3.0</ib.source.formats.version>

		<skip.invoker>false</skip.invoker>
		<maven.version>3.9.6</maven.version>
		<enforcer.maven.version>${maven.version}</enforcer.maven.version>
		<maven.bom.version>${maven.version}.0</maven.bom.version>
		<groovy.version>3.0.8</groovy.version>
		<groovy.bom.version>${groovy.version}.1</groovy.bom.version>
		<maven.build.timestamp.format>yyyyMMdd-HHmmssSSS</maven.build.timestamp.format>
		<expected.instant.format>yyyy-MM-dd'T'HH:mm:ss.SSSSSSSSS'Z'</expected.instant.format>

		<git.http.url>${git.scm.url}.git</git.http.url>
		<git.source.host>github.com</git.source.host>
		<git.scm.url>
			https://${git.source.host}/${team.group.id}/${project.artifactId}</git.scm.url>
		<git.url>
			git@${git.source.host}:${team.group.id}/${project.artifactId}.git</git.url>
		<issue.management.url>
			https://${git.source.host}/${team.group.id}/${project.artifactId}/issues</issue.management.url>
		<ci.url>https://ci.infrastructurebuilder.com</ci.url>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
		<site.path>org.infrastructurebuilder/ibparent-minimal/${project.version}</site.path>
		<surefire.failIfNoTests>true</surefire.failIfNoTests>
		<team.group.id>infrastructurebuilder</team.group.id>
		<test.coverage.percentage.required>95</test.coverage.percentage.required>

		<java.17.version>17.0.9-amzn</java.17.version>
		<java.11.version>11.0.21-amzn</java.11.version>
		<java.8.version>8.0.392-amzn</java.8.version>

		<maven.antrun.plugin.version>3.1.0</maven.antrun.plugin.version>
		<maven.archetype.plugin.version>3.2.1</maven.archetype.plugin.version>
		<maven.assembly.plugin.version>3.7.1</maven.assembly.plugin.version>
		<maven.build.helper.plugin.version>3.6.0</maven.build.helper.plugin.version>
		<maven.changelog.plugin.version>2.3</maven.changelog.plugin.version>
		<maven.changes.plugin.version>2.12.1</maven.changes.plugin.version>
		<maven.clean.plugin.version>3.3.2</maven.clean.plugin.version>
		<maven.dependency.plugin.version>3.7.1</maven.dependency.plugin.version>
		<maven.deploy.plugin.version>3.1.2</maven.deploy.plugin.version>
		<!--
		<maven.download.plugin.groupId>com.googlecode.maven-download-plugin</maven.download.plugin.groupId> -->
		<maven.download.plugin.groupId>org.infrastructurebuilder.usurped</maven.download.plugin.groupId>
		<maven.download.plugin.version>1.7.1.2</maven.download.plugin.version> <!--
    Use Caution when updating -->
		<maven.enforcer.plugin.version>3.5.0</maven.enforcer.plugin.version>
		<maven.exec.plugin.version>3.3.0</maven.exec.plugin.version>
		<maven.gpg.plugin.version>3.2.4</maven.gpg.plugin.version>
		<maven.graph.plugin.version>1.2.3</maven.graph.plugin.version>
		<maven.install.plugin.version>3.1.2</maven.install.plugin.version>
		<maven.invoker.plugin.version>3.7.0</maven.invoker.plugin.version>
		<maven.jar.plugin.version>3.2.0</maven.jar.plugin.version>
		<maven.jarsigner.plugin.version>3.0.0</maven.jarsigner.plugin.version>
		<maven.nexus.staging.plugin.skipStaging>false</maven.nexus.staging.plugin.skipStaging>
		<maven.nexus.staging.plugin.version>1.6.14</maven.nexus.staging.plugin.version>
		<maven.pax.plugin.version>1.5</maven.pax.plugin.version>
		<maven.pdf.plugin.version>1.6.1</maven.pdf.plugin.version>
		<maven.project.info.plugin.version>3.6.2</maven.project.info.plugin.version>
		<maven.properties.plugin.version>1.2.1.0-ib</maven.properties.plugin.version>
		<maven.release.plugin.version>3.1.1</maven.release.plugin.version>
		<maven.remote.resources.version>3.2.0</maven.remote.resources.version>
		<maven.resources.plugin.version>3.3.1</maven.resources.plugin.version>
		<maven.s3.wagon.version>1.3.3</maven.s3.wagon.version>
		<maven.shared.filtering.version>3.3.2</maven.shared.filtering.version>
		<maven.site.doxia.model.version>1.12.0</maven.site.doxia.model.version>
		<maven.site.fluido.skin.version>1.7</maven.site.fluido.skin.version>
		<maven.site.plugin.version>4.0.0-M15</maven.site.plugin.version>
		<maven.sonar.plugin.version>3.7.0.1746</maven.sonar.plugin.version>
		<maven.source.plugin.version>3.3.1</maven.source.plugin.version>
		<maven.toolchains.plugin.version>3.2.0</maven.toolchains.plugin.version>
		<maven.versions.plugin.version>2.17.1</maven.versions.plugin.version>
		<maven.wagon.version>3.5.3</maven.wagon.version>


		<ib.license.email>admin@infrastructurebuilder.org</ib.license.email>
		<ib.license.name>admin</ib.license.name>
		<ib.site.path>
			${project.groupId}/${project.artifactId}/${project.version}</ib.site.path>
		<ib.site.repo>repository/sites</ib.site.repo>
		<ib.site.root>${ib.site.scheme}://${ib.site.server}/${ib.site.repo}</ib.site.root>
		<ib.site.scheme>https</ib.site.scheme>
		<ib.site.server>github.com</ib.site.server>
		<ib.site.view.url>
			${ib.site.scheme}://${ib.site.server}/${project.artifactId}</ib.site.view.url>
		<ib.site.wagon.method>dav</ib.site.wagon.method>
		<ib.versioning.support.plugin.version>0.21.0</ib.versioning.support.plugin.version>

		<!-- -->
		<hashicorp.boundary.sha512.darwin>
			4d2bdad1b9589acd4e0f2902e2f4a7fad9a7054c19b604ef9e1775a9767850afbb510bcbd89d0f08a36ba0e5dcf8641f16e93ee4c33d9376b2403200ae462d46</hashicorp.boundary.sha512.darwin>
		<hashicorp.boundary.sha512.linux>
			df263859aa9872affd0f384f41374d13ea9469dc2191c704b970b6dac7d048e26b98e9046046bc750b44619a6a0104fd6cf35f09eaea76300514d26ae15fdba8</hashicorp.boundary.sha512.linux>
		<hashicorp.boundary.sha512.windows>
			6d8c418553aaed85bcd11fe3f9e532497b578c74cd26e66043a39d3715eb587abf2358c95ce5a7438abba57de991d321e097ac16bd9cb6328ef321aac4b66c11</hashicorp.boundary.sha512.windows>
		<hashicorp.boundary.url>
			https://releases.hashicorp.com/boundary/${hashicorp.boundary.version}/boundary_${hashicorp.boundary.version}_${hashicorp.os}_amd64.zip</hashicorp.boundary.url>
		<hashicorp.boundary.version>0.13.1</hashicorp.boundary.version>
		<hashicorp.boundary.download.skip>true</hashicorp.boundary.download.skip>

		<!-- -->
		<hashicorp.consul.sha512.darwin>
			d3a2ac55bb1d60d66282a25154ac2b269729ba4500ff7b0fdcd290bfef078cd68834d25e92eb3f75859306b09c95db949c14a6433d343a398836600f31d14efc</hashicorp.consul.sha512.darwin>
		<hashicorp.consul.sha512.linux>
			50d809979febb662f3674ef36b4a1be2ff0c0fdc5cbf4154a0b634e38ecf631582eebbaff935d08c844ead3eb5bb2d497812ac5f062d5abe5fd7102e27c9833a</hashicorp.consul.sha512.linux>
		<hashicorp.consul.sha512.windows>
			9d83c936f37a1632718a3c0c4fad3a8ebb3ad5ce8a6c5525df6e174cc935257acf798ac8ff43804f54c1d8bb6c190764b0db7b01058a5376119f455f5f05df21</hashicorp.consul.sha512.windows>
		<hashicorp.consul.url>
			https://releases.hashicorp.com/consul/${hashicorp.consul.version}/consul_${hashicorp.consul.version}_${hashicorp.os}_amd64.zip</hashicorp.consul.url>
		<hashicorp.consul.version>1.16.1</hashicorp.consul.version>
		<hashicorp.consul.download.skip>true</hashicorp.consul.download.skip>

		<!-- -->
		<hashicorp.nomad.sha512.darwin>
			d84d181806353e5097583489a1fea13d0f070b39b1ce7d46e5145b801083ecbe8327daf128d19b0a17c452621ac96bb67d6ebd61da1c40972c4844d939ae34d1</hashicorp.nomad.sha512.darwin>
		<hashicorp.nomad.sha512.linux>
			e562f6ac55d94b40429370d34b4503c220b7601624372b25ed26ae48af0f21c7b2c897517cb484f25266fabbe2ae559e32c66345da548ec4355d579fda4b53eb</hashicorp.nomad.sha512.linux>
		<hashicorp.nomad.sha512.windows>
			33239e7bff2ce5ecfdd2282800bf9ec1793e950b2291dc416700cd457910513da9bcd807acf6885157db8ac3e54cee6cc690c58aafb219ae5e21e24beb600b72</hashicorp.nomad.sha512.windows>
		<hashicorp.nomad.url>
			https://releases.hashicorp.com/nomad/${hashicorp.nomad.version}/nomad_${hashicorp.nomad.version}_${hashicorp.os}_amd64.zip</hashicorp.nomad.url>
		<hashicorp.nomad.version>1.6.1</hashicorp.nomad.version>
		<hashicorp.nomad.download.skip>true</hashicorp.nomad.download.skip>

		<!-- -->
		<hashicorp.packer.sha512.darwin>
			d348bd1a84d3a95a298a39f4c761fef7434f61da9a3f7829eed6420443dcc35112cca83923a79c679b8652b98e39cd47d0d61a21ff086ca7e687f63a1090546d</hashicorp.packer.sha512.darwin>
		<hashicorp.packer.sha512.linux>
			c458db36672bec3ceefea3687365e426a3a4818af9b1f3192f7ca97ce7e69c1d2c3687efb4656604fbe0656e1ff2b86d98feb021f59d4038813be47f85dbb131</hashicorp.packer.sha512.linux>
		<hashicorp.packer.sha512.windows>
			ab344f2cf64e19bc89c8afe466aded78c0e22196a5b112a374e7a1efc30a83dfc9cdf4961701018cf2b7b65f60eb8cfb7b9d07c5bac41e4a2fe4e984d560f8cc</hashicorp.packer.sha512.windows>
		<hashicorp.packer.url>
			https://releases.hashicorp.com/packer/${hashicorp.packer.version}/packer_${hashicorp.packer.version}_${hashicorp.os}_amd64.zip</hashicorp.packer.url>
		<hashicorp.packer.version>1.9.4</hashicorp.packer.version>
		<hashicorp.packer.download.skip>true</hashicorp.packer.download.skip>

		<!-- -->
		<hashicorp.sentinel.sha512.darwin>
			e84aca7b53c86db151a3e9af92f61e218222bebf1f4aaf1bf4ecbe3ba9dab8534711c3c1082edf5b370c3f00677abdad6be32410606169dcd3d2011faca652f3</hashicorp.sentinel.sha512.darwin>
		<hashicorp.sentinel.sha512.linux>
			dae6b24eded363edd3902b1cd17cd699c353931d4c45ef5b38560aa56409cd4583ced74c140bfdde86a154747d7c013834b6d798adf6cf44715996da60792a9b</hashicorp.sentinel.sha512.linux>
		<hashicorp.sentinel.sha512.windows>
			820129dc1ecb6d6566dcbf3a623a1b03f0aa12e42a802893397a00ab0c7d4983479523a55acd49e89d8717ea322eb7b3df6d36af98387256d093744ce0386988</hashicorp.sentinel.sha512.windows>
		<hashicorp.sentinel.url>
			https://releases.hashicorp.com/sentinel/${hashicorp.sentinel.version}/sentinel_${hashicorp.sentinel.version}_${hashicorp.os}_amd64.zip</hashicorp.sentinel.url>
		<hashicorp.sentinel.version>0.22.1</hashicorp.sentinel.version>
		<hashicorp.sentinel.download.skip>true</hashicorp.sentinel.download.skip>

		<!-- -->

		<hashicorp.terraform.sha512.darwin>
			acc1676d70b3041cff05fa2d81d04ba2482de0e66750539b7506e9ba5f0e52519b973cbae0a261182d0c165616b2ea951b0abea1ca6562a5770d580dc03f3446</hashicorp.terraform.sha512.darwin>
		<hashicorp.terraform.sha512.linux>
			2a1d0e8654856d0ea584eea3f1c9cf62f347e13534b3e7e900143252289926604a7625cbdb1a436b721154e688f723545b56add556dc188cba945d05aaf31489</hashicorp.terraform.sha512.linux>
		<hashicorp.terraform.sha512.windows>
			0480e1952b41583d2bae02d79a128de88b73574cdb7021cbb116d5713c65e69b8ad5c86a0ae8f01eb595142875bd72c14c0abb4190c0367cbcb5b97f598a82b0</hashicorp.terraform.sha512.windows>
		<hashicorp.terraform.url>
			https://releases.hashicorp.com/terraform/${hashicorp.terraform.version}/terraform_${hashicorp.terraform.version}_${hashicorp.os}_amd64.zip</hashicorp.terraform.url>
		<hashicorp.terraform.version>1.5.5</hashicorp.terraform.version>
		<hashicorp.terraform.download.skip>true</hashicorp.terraform.download.skip>

		<!-- -->
		<!--  Vagrant has installers for Windows and Mac.  IB setup can't really
    drive
    those installations -->
		<!--
		<hashicorp.vagrant.sha512.darwin>7f4e441b07c71bb6a896e778a7abe7db6027fe32a6d493c37cba98054e203c1949c7d69e47e506aaeb154c8b2cc7cfa4a2eee6201097abf59f9fa080d251b1e3</hashicorp.vagrant.sha512.darwin> -->
		<hashicorp.vagrant.sha512.linux>
			c156c6a6d1a5742d81ae9875fbe5176054afe8ec682c4e123114f1dd75357f1c292255a7dbdc38fadd0be8aca8765bf5f2bf02b8bfaea5166adb584a39122013</hashicorp.vagrant.sha512.linux>
		<!--
		<hashicorp.vagrant.sha512.windows>7c6feedffdb8cd711e9f54cda39eb4e89f6ea88ba12c627459a699749e15ffcaaacf8d4f4ef465c8d27ff179ef77e8328d2be2dcf84b880546160683928d9c85</hashicorp.vagrant.sha512.windows> -->
		<hashicorp.vagrant.url>
			https://releases.hashicorp.com/vagrant/${hashicorp.vagrant.version}/vagrant_${hashicorp.vagrant.version}_${hashicorp.os}_amd64.zip</hashicorp.vagrant.url>
		<hashicorp.vagrant.version>2.3.7</hashicorp.vagrant.version>
		<hashicorp.vagrant.download.skip>true</hashicorp.vagrant.download.skip>


		<!-- -->
		<hashicorp.vault.sha512.darwin>
			3ed4fda7a802c38ae8ce4df2197c314e8b02a468f383e350db31058af2adc5ce6b2277220167fec76171dda08ce3623738fa696999da5c09dfdaae81ad780843</hashicorp.vault.sha512.darwin>
		<hashicorp.vault.sha512.linux>
			e79fe393fca0855dc5ca9026769029cd98ed007da4c6acab0e88b7036c791a6f1b69a24da86b57c93d2404b755ec96afe14059a79c958e2d90f629657d178db4</hashicorp.vault.sha512.linux>
		<hashicorp.vault.sha512.windows>
			c65316eb3db584ad3345f3f48725cabd239d9f6149640148e89335c827096760f3a247e4fc0dd881a9422761b4f059e228a385fc711f7526e253bf2b75ee032b</hashicorp.vault.sha512.windows>
		<hashicorp.vault.url>
			https://releases.hashicorp.com/vault/${hashicorp.vault.version}/vault_${hashicorp.vault.version}_${hashicorp.os}_amd64.zip</hashicorp.vault.url>
		<hashicorp.vault.version>1.14.1</hashicorp.vault.version>
		<hashicorp.vault.download.skip>true</hashicorp.vault.download.skip>

		<!-- -->
		<hashicorp.waypoint.sha512.darwin>
			fda4382a01376b77e4fa31a6c661c35bea757131b813d7a55cd6a6ddde86433a9369ae6fabc0cc0143d234b3c89c4c205a9407b5ef326f4853f9ddf74616fd1b</hashicorp.waypoint.sha512.darwin>
		<hashicorp.waypoint.sha512.linux>
			bbaf18ce567d1eb9c6e8f71c79ed29fe560e81cb76a6e727c659df61332cd4f3a83ab5e7eee96364d28e046ec52722a954658bd3f179ba5bca62b8c33c8f0cbe</hashicorp.waypoint.sha512.linux>
		<hashicorp.waypoint.sha512.windows>
			03755ced71fb83a499eaac47fae86d35cb06a127ffb3cbbd1f94b82ea9786428114ee9d3cb39a34be5599a87c0f358aacf757eda7a55a97ce74421d839b774b8</hashicorp.waypoint.sha512.windows>
		<hashicorp.waypoint.url>
			https://releases.hashicorp.com/waypoint/${hashicorp.waypoint.version}/waypoint_${hashicorp.waypoint.version}_${hashicorp.os}_amd64.zip</hashicorp.waypoint.url>
		<hashicorp.waypoint.version>0.11.4</hashicorp.waypoint.version>
		<hashicorp.waypoint.download.skip>true</hashicorp.waypoint.download.skip>


		<alex.nederlof.jasperreports.plugin.version>2.8</alex.nederlof.jasperreports.plugin.version>
		<animal.sniffer.maven.plugin.version>1.24</animal.sniffer.maven.plugin.version>
		<dbunit.maven.version>1.0-beta-3</dbunit.maven.version>
		<dbunit.version>2.8.0</dbunit.version>
		<doxia.site.renderer.version>2.0.0-M19</doxia.site.renderer.version>
		<fabric8io.docker.maven.plugin.version>0.45.0</fabric8io.docker.maven.plugin.version>
		<felix.bundle.plugin.version>4.2.1</felix.bundle.plugin.version>
		<flatten.maven.plugin.version>1.6.0</flatten.maven.plugin.version>
		<frontend.maven.plugin.version>1.15.0</frontend.maven.plugin.version>
		<gitlog.maven.plugin.version>1.14.0</gitlog.maven.plugin.version>
		<google.protoc.includeStdTypes>true</google.protoc.includeStdTypes>
		<google.protoc.version>3.11.2</google.protoc.version>
		<jgit.version>5.12.0.202106070339-r</jgit.version>
		<jsr305.version>3.0.2</jsr305.version>
		<junit.bom.version>5.11.0-M2</junit.bom.version>
		<junit.version>4.13.2</junit.version>
		<kr.motd.maven.plugin.version>1.7.1</kr.motd.maven.plugin.version>
		<license.maven.plugin.version>2.0.0</license.maven.plugin.version>
		<liquibase.version>4.29.0</liquibase.version>
		<mycila.license.maven.plugin>4.5</mycila.license.maven.plugin> <!-- Do not
		change until bugs fixed -->
		<os72.protoc.maven.plugin.version>3.11.4</os72.protoc.maven.plugin.version>
		<ounce.maven.plugin.version>1.6.3</ounce.maven.plugin.version>
		<protobuf.version>3.11.2</protobuf.version>
		<sonar.maven.plugin.version>4.0.0.4121</sonar.maven.plugin.version>
		<spf4j.jdiff.maven.plugin.version>8.10.0</spf4j.jdiff.maven.plugin.version>
		<spotify.docker.maven.plugin.version>1.2.2</spotify.docker.maven.plugin.version>
		<templating.maven.plugin.version>3.0.0</templating.maven.plugin.version>
		<tidy.pom.maven.plugin.version>1.3.0</tidy.pom.maven.plugin.version>
		<vertx.version>4.5.9</vertx.version>
		<xolstice.protobuf.maven.plugin.version>0.6.1</xolstice.protobuf.maven.plugin.version>


		<!-- Reformatting config -->
		<line.length>132</line.length>
		<indent.size>2</indent.size>
		<!-- Configuration of flatten plugin -->
		<flatten.mode>ossrh</flatten.mode> <!-- See
    https://www.mojohaus.org/flatten-maven-plugin/flatten-mojo.html#flattenMode -->
	</properties>

	<dependencyManagement>
		<dependencies>

			<!-- Specials -->
			<dependency>
				<groupId>org.infrastructurebuilder</groupId>
				<artifactId>ib-source-formats</artifactId>
				<version>${ib.source.formats.version}</version>
			</dependency>

			<dependency>
				<groupId>com.google.code.findbugs</groupId>
				<artifactId>jsr305</artifactId>
				<version>${jsr305.version}</version>
			</dependency>
			<dependency>
				<groupId>io.vertx</groupId>
				<artifactId>vertx-dependencies</artifactId>
				<version>${vertx.version}</version>
				<type>pom</type>
				<scope>import</scope>
			</dependency>
			<dependency>
				<groupId>junit</groupId>
				<artifactId>junit</artifactId>
				<version>${junit.version}</version>
			</dependency>
			<dependency>
				<groupId>org.junit</groupId>
				<artifactId>junit-bom</artifactId>
				<version>${junit.bom.version}</version>
				<type>pom</type>
				<scope>import</scope>
			</dependency>
			<!--
      <dependency>
        <groupId>org.junit.jupiter</groupId>
        <artifactId>junit-jupiter-api</artifactId>
        <version>${junit.jupiter.version}</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>org.junit.vintage</groupId>
        <artifactId>junit-vintage-engine</artifactId>
        <version>${junit.jupiter.version}</version>
        <scope>test</scope>
      </dependency>
       -->
			<dependency>
				<groupId>org.apache.maven.shared</groupId>
				<artifactId>maven-filtering</artifactId>
				<version>${maven.shared.filtering.version}</version>
			</dependency>
			<dependency>
				<groupId>org.dbunit</groupId>
				<artifactId>dbunit</artifactId>
				<version>${dbunit.version}</version>
			</dependency>
			<dependency>
				<groupId>org.infrastructurebuilder</groupId>
				<artifactId>maven-import-bom</artifactId>
				<version>${maven.bom.version}</version>
				<type>pom</type>
				<scope>import</scope>
			</dependency>
			<dependency>
				<groupId>org.infrastructurebuilder.util</groupId>
				<artifactId>groovy-import-bom</artifactId>
				<version>${groovy.bom.version}</version>
				<type>pom</type>
				<scope>import</scope>
			</dependency>
			<dependency>
				<groupId>org.liquibase</groupId>
				<artifactId>liquibase-core</artifactId>
				<version>${liquibase.version}</version>
			</dependency>

		</dependencies>
	</dependencyManagement>

	<build>
		<resources>
			<resource>
				<directory>src/main/resources</directory>
				<filtering>false</filtering>
			</resource>
		</resources>
		<testResources>
			<testResource>
				<directory>src/test/resources</directory>
				<filtering>false</filtering>
			</testResource>
		</testResources>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.infrastructurebuilder.maven</groupId>
					<artifactId>ibversions-maven-plugin</artifactId>
					<version>${ib.versioning.support.plugin.version}</version>
				</plugin>
				<plugin>
					<groupId>org.infrastructurebuilder.maven</groupId>
					<artifactId>properties-maven-plugin</artifactId>
					<version>${maven.properties.plugin.version}</version>
				</plugin>

				<plugin>
					<groupId>org.codehaus.mojo</groupId>
					<artifactId>ounce-maven-plugin</artifactId>
					<version>${ounce.maven.plugin.version}</version>
				</plugin>
				<plugin>
					<groupId>org.codehaus.mojo</groupId>
					<artifactId>dbunit-maven-plugin</artifactId>
					<version>${dbunit.maven.version}</version>
				</plugin>
				<plugin>
					<groupId>org.spf4j</groupId>
					<artifactId>spf4j-jdiff-maven-plugin</artifactId>
					<version>${spf4j.jdiff.maven.plugin.version}</version>
				</plugin>
				<plugin>
					<groupId>com.alexnederlof</groupId>
					<artifactId>jasperreports-plugin</artifactId>
					<version>${alex.nederlof.jasperreports.plugin.version}</version>
				</plugin>
				<plugin>
					<groupId>com.github.os72</groupId>
					<artifactId>protoc-jar-maven-plugin</artifactId>
					<version>${os72.protoc.maven.plugin.version}</version>
					<!-- See
          http://os72.github.io/protoc-jar-maven-plugin/index.html -->
					<configuration>
						<protocArtifact>
							com.google.protobuf:protoc:${google.protoc.version}</protocArtifact>
						<!-- this is required for using the standard protobuf
            types like
              Any / Timestamp -->
						<includeStdTypes>${google.protoc.includeStdTypes}</includeStdTypes>
						<outputDirectory>target/generated-sources/protobuf</outputDirectory>
					</configuration>
				</plugin>
				<plugin>
					<groupId>com.spotify</groupId>
					<artifactId>docker-maven-plugin</artifactId>
					<version>${spotify.docker.maven.plugin.version}</version>
				</plugin>
				<plugin>
					<groupId>io.fabric8</groupId>
					<artifactId>docker-maven-plugin</artifactId>
					<version>${fabric8io.docker.maven.plugin.version}</version>
				</plugin>
				<plugin>
					<artifactId>maven-antrun-plugin</artifactId>
					<version>${maven.antrun.plugin.version}</version>
				</plugin>
				<plugin>
					<artifactId>maven-archetype-plugin</artifactId>
					<version>${maven.archetype.plugin.version}</version>
				</plugin>
				<plugin>
					<artifactId>maven-assembly-plugin</artifactId>
					<version>${maven.assembly.plugin.version}</version>
				</plugin>
				<!-- TODO Fix Redline <plugin>
        <groupId>org.infrastructurebuilder</groupId>
        <artifactId>redline-maven-plugin</artifactId>
        <version>${redline.maven.plugin.version}</version>
          </plugin> -->
				<plugin>
					<artifactId>maven-clean-plugin</artifactId>
					<version>${maven.clean.plugin.version}</version>
				</plugin>
				<plugin>
					<artifactId>maven-dependency-plugin</artifactId>
					<version>${maven.dependency.plugin.version}</version>
				</plugin>
				<plugin>
					<artifactId>maven-deploy-plugin</artifactId>
					<version>${maven.deploy.plugin.version}</version>
				</plugin>
				<plugin>
					<artifactId>maven-enforcer-plugin</artifactId>
					<version>${maven.enforcer.plugin.version}</version>
					<configuration>
						<rules>
							<requireMavenVersion>
								<version>
									[${enforcer.maven.version},)
								</version>
							</requireMavenVersion>
							<banDuplicatePomDependencyVersions />
							<!-- <requireNoRepositories /> -->
							<!--  unfortunately too restrictive -->
						</rules>
					</configuration>
				</plugin>
				<plugin>
					<artifactId>maven-gpg-plugin</artifactId>
					<version>${maven.gpg.plugin.version}</version>
				</plugin>
				<plugin>
					<artifactId>maven-install-plugin</artifactId>
					<version>${maven.install.plugin.version}</version>
				</plugin>
				<plugin>
					<artifactId>maven-invoker-plugin</artifactId>
					<version>${maven.invoker.plugin.version}</version>
					<configuration>
						<skipInstallation>${skip.invoker}</skipInstallation>
						<skipInvocation>${skip.invoker}</skipInvocation>
						<projectsDirectory>src/it</projectsDirectory>
						<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
						<settingsFile>src/it/settings.xml</settingsFile>
						<preBuildHookScript>setup</preBuildHookScript>
						<postBuildHookScript>verify</postBuildHookScript>
						<localRepositoryPath>
							${project.build.directory}/local-repo</localRepositoryPath>
						<pomIncludes>
							<pomInclude>*/pom.xml</pomInclude>
						</pomIncludes>
						<filterProperties>
						</filterProperties>
					</configuration>
				</plugin>
				<plugin>
					<artifactId>maven-pdf-plugin</artifactId>
					<version>${maven.pdf.plugin.version}</version>
				</plugin>
				<plugin>
					<artifactId>maven-remote-resources-plugin</artifactId>
					<version>${maven.remote.resources.version}</version>
				</plugin>
				<plugin>
					<artifactId>maven-resources-plugin</artifactId>
					<version>${maven.resources.plugin.version}</version>
					<dependencies>
						<dependency>
							<groupId>org.apache.maven.shared</groupId>
							<artifactId>maven-filtering</artifactId>
							<version>${maven.shared.filtering.version}</version>
						</dependency>
					</dependencies>
					<configuration>
						<nonFilteredFileExtensions>
							<nonFilteredFileExtension>bin</nonFilteredFileExtension>
							<nonFilteredFileExtension>gif</nonFilteredFileExtension>
							<nonFilteredFileExtension>gz</nonFilteredFileExtension>
							<nonFilteredFileExtension>jar</nonFilteredFileExtension>
							<nonFilteredFileExtension>jpg</nonFilteredFileExtension>
							<nonFilteredFileExtension>png</nonFilteredFileExtension>
							<nonFilteredFileExtension>tgz</nonFilteredFileExtension>
							<nonFilteredFileExtension>zip</nonFilteredFileExtension>
						</nonFilteredFileExtensions>
					</configuration>
				</plugin>
				<plugin>
					<artifactId>maven-site-plugin</artifactId>
					<version>${maven.site.plugin.version}</version>
					<dependencies>
						<dependency>
							<groupId>org.apache.maven.wagon</groupId>
							<artifactId>wagon-ssh</artifactId>
							<version>${maven.wagon.version}</version>
						</dependency>
						<dependency>
							<groupId>org.apache.maven.doxia</groupId>
							<artifactId>doxia-site-renderer</artifactId>
							<version>${doxia.site.renderer.version}</version>
						</dependency>

						<dependency>
							<groupId>org.apache.maven.doxia</groupId>
							<artifactId>doxia-module-markdown</artifactId>
							<version>${maven.site.doxia.model.version}</version>
						</dependency>
						<dependency>
							<groupId>org.apache.maven.doxia</groupId>
							<artifactId>doxia-module-fml</artifactId>
							<version>${maven.site.doxia.model.version}</version>
						</dependency>
						<dependency>
							<groupId>org.apache.maven.doxia</groupId>
							<artifactId>doxia-module-latex</artifactId>
							<version>${maven.site.doxia.model.version}</version>
						</dependency>
						<dependency>
							<groupId>org.apache.maven.doxia</groupId>
							<artifactId>doxia-module-apt</artifactId>
							<version>${maven.site.doxia.model.version}</version>
						</dependency>
						<dependency>
							<groupId>org.apache.maven.doxia</groupId>
							<artifactId>doxia-module-xdoc</artifactId>
							<version>${maven.site.doxia.model.version}</version>
						</dependency>
						<dependency>
							<groupId>org.apache.maven.wagon</groupId>
							<artifactId>wagon-webdav-jackrabbit</artifactId>
							<version>${maven.wagon.version}</version>
						</dependency>
					</dependencies>
					<configuration>
						<locales>en</locales>
						<stagingDirectory>${project.build.directory}/Staging/</stagingDirectory>
						<topSiteURL>${ib.site.view.url}</topSiteURL>
					</configuration>
					<executions>
						<execution>
							<id>attach-descriptor</id>
							<goals>
								<goal>attach-descriptor</goal>
							</goals>
						</execution>
					</executions>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-source-plugin</artifactId>
					<version>${maven.source.plugin.version}</version>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-toolchains-plugin</artifactId>
					<version>${maven.toolchains.plugin.version}</version>
					<configuration>
						<toolchains>
							<jdk>
								<version>17</version>
							</jdk>
						</toolchains>
					</configuration>
				</plugin>

				<plugin>
					<groupId>org.codehaus.mojo</groupId>
					<artifactId>animal-sniffer-maven-plugin</artifactId>
					<version>${animal.sniffer.maven.plugin.version}</version>
				</plugin>
				<plugin>
					<groupId>org.codehaus.mojo</groupId>
					<artifactId>build-helper-maven-plugin</artifactId>
					<version>${maven.build.helper.plugin.version}</version>
					<configuration>
						<formatMajor>%04d</formatMajor>
						<formatMinor>$04d</formatMinor>
						<formatIncremental>%04d</formatIncremental>
						<formattedPropertyPrefix>ibversionFormatted</formattedPropertyPrefix>
						<propertyPrefix>ibversion</propertyPrefix>
					</configuration>
				</plugin>
				<plugin>
					<groupId>org.codehaus.mojo</groupId>
					<artifactId>exec-maven-plugin</artifactId>
					<version>${maven.exec.plugin.version}</version>
				</plugin>
				<plugin>
					<groupId>org.codehaus.mojo</groupId>
					<artifactId>flatten-maven-plugin</artifactId>
					<version>${flatten.maven.plugin.version}</version>
					<configuration>
						<flattenMode>ossrh</flattenMode>
						<indentSize>${indent.size}</indentSize>
						<lineLength>${line.length}</lineLength>
					</configuration>
				</plugin>

				<!--
        <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>license-maven-plugin</artifactId>
          <version>${license.maven.plugin.version}</version>
        </plugin>
-->
				<plugin>
					<groupId>org.sonarsource.scanner.maven</groupId>
					<artifactId>sonar-maven-plugin</artifactId>
					<version>${sonar.maven.plugin.version}</version>
				</plugin>
				<plugin>
					<groupId>org.codehaus.mojo</groupId>
					<artifactId>templating-maven-plugin</artifactId>
					<version>${templating.maven.plugin.version}</version>
				</plugin>
				<plugin>
					<groupId>org.codehaus.mojo</groupId>
					<artifactId>tidy-maven-plugin</artifactId>
					<version>${tidy.pom.maven.plugin.version}</version>
					<configuration>
						<indentSize>${indent.size}</indentSize>
						<lineLength>${line.length}</lineLength>
					</configuration>
					<executions>
						<execution>
							<id>validate</id>
							<phase>validate</phase>
							<goals>
								<goal>check</goal>
							</goals>
						</execution>
					</executions>
				</plugin>
				<plugin>
					<groupId>org.codehaus.mojo</groupId>
					<artifactId>versions-maven-plugin</artifactId>
					<version>${maven.versions.plugin.version}</version>
				</plugin>
				<plugin>
					<groupId>org.kuali.maven.plugins</groupId>
					<artifactId>graph-maven-plugin</artifactId>
					<version>${maven.graph.plugin.version}</version>
				</plugin>
				<plugin>
					<groupId>org.liquibase</groupId>
					<artifactId>liquibase-maven-plugin</artifactId>
					<version>${liquibase.version}</version>
				</plugin>
				<plugin>
					<groupId>org.sonatype.plugins</groupId>
					<artifactId>nexus-staging-maven-plugin</artifactId>
					<version>${maven.nexus.staging.plugin.version}</version>
					<extensions>true</extensions>
					<configuration>
						<skipStaging>${maven.nexus.staging.plugin.skipStaging}</skipStaging>
						<serverId>ossrh</serverId>
						<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
						<autoReleaseAfterClose>true</autoReleaseAfterClose>
						<stagingProgressTimeoutMinutes>10</stagingProgressTimeoutMinutes>
					</configuration>
				</plugin>
				<plugin>
					<groupId>org.xolstice.maven.plugins</groupId>
					<artifactId>protobuf-maven-plugin</artifactId>
					<version>${xolstice.protobuf.maven.plugin.version}</version>
					<!-- See https://www.xolstice.org/protobuf-maven-plugin -->
				</plugin>
				<plugin>
					<artifactId>maven-release-plugin</artifactId>
					<version>${maven.release.plugin.version}</version>
					<configuration>
						<autoVersionSubmodules>true</autoVersionSubmodules>
						<useReleaseProfile>true</useReleaseProfile>
						<releaseProfiles>${gpg.signing.profiles}</releaseProfiles>
						<goals>deploy</goals>
					</configuration>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-project-info-reports-plugin</artifactId>
					<version>${maven.project.info.plugin.version}</version>
				</plugin>
				<plugin>
					<groupId>com.github.danielflower.mavenplugins</groupId>
					<artifactId>gitlog-maven-plugin</artifactId>
					<version>${gitlog.maven.plugin.version}</version>
					<configuration>
						<generateMarkdownChangeLog>true</generateMarkdownChangeLog>
						<generateSimpleHTMLChangeLog>true</generateSimpleHTMLChangeLog>
						<simpleHTMLChangeLogFilename>
							github-changelog-simple.html</simpleHTMLChangeLogFilename>
					</configuration>
				</plugin>
				<plugin>
					<groupId>com.github.eirslett</groupId>
					<artifactId>frontend-maven-plugin</artifactId>
					<version>${frontend.maven.plugin.version}</version>
				</plugin>

				<plugin>
					<groupId>${maven.download.plugin.groupId}</groupId>
					<artifactId>download-maven-plugin</artifactId>
					<version>${maven.download.plugin.version}</version>
					<configuration>
						<outputDirectory>${project.build.directory}</outputDirectory>
						<skip>true</skip>
						<alwaysVerifyChecksum>true</alwaysVerifyChecksum>
					</configuration>
					<!--
          <executions>
            <execution>
              <phase>verify</phase>
              <inherited>false</inherited>
              <configuration>
                <skip>true</skip>
              </configuration>
            </execution>
          </executions>
          -->
				</plugin>

				<plugin>
					<groupId>com.mycila</groupId>
					<artifactId>license-maven-plugin</artifactId>
					<version>${mycila.license.maven.plugin}</version>
					<dependencies>
						<dependency>
							<groupId>org.infrastructurebuilder</groupId>
							<artifactId>ib-source-formats</artifactId>
							<version>${ib.source.formats.version}</version>
						</dependency>
					</dependencies>
					<executions>
						<execution>
							<phase>process-sources</phase>
							<goals>
								<goal>format</goal>
							</goals>
						</execution>
					</executions>
					<configuration>
						<header>
							com/mycila/maven/plugin/license/templates/IB-APACHE2.txt</header>
						<strictCheck>true</strictCheck>
						<properties>
							<owner>${ib.license.name}</owner>
							<email>${ib.license.email}</email>
						</properties>
						<excludes>
							<exclude>**/*.md</exclude>
							<exclude>**/LICENSE</exclude>
							<exclude>**/.*</exclude>
							<exclude>**/*.txt</exclude>
							<exclude>src/test/resources/**</exclude>
							<exclude>src/main/resources/**</exclude>
							<exclude>src/main/avro/**</exclude>
							<exclude>src/main/java/com/mscharhag/**</exclude>
							<exclude>src/test/java/com/mscharhag/**</exclude>
						</excludes>
						<mapping>
							<bash>SCRIPT_STYLE</bash>
							<tf>SCRIPT_STYLE</tf>
						</mapping>
					</configuration>
				</plugin>
				<plugin>
					<groupId>kr.motd.maven</groupId>
					<artifactId>os-maven-plugin</artifactId>
					<version>${kr.motd.maven.plugin.version}</version>
					<!-- See https://github.com/trustin/os-maven-plugin -->
				</plugin>
				<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
				<plugin>
					<groupId>org.eclipse.m2e</groupId>
					<artifactId>lifecycle-mapping</artifactId>
					<version>1.0.0</version>
					<configuration>
						<lifecycleMappingMetadata>
							<pluginExecutions>
								<pluginExecution>
									<pluginExecutionFilter>
										<groupId>
											org.infrastructurebuilder.modello</groupId>
										<artifactId>modello-maven-plugin-usurped</artifactId>
										<versionRange>[1.11.0.0,)</versionRange>
										<goals>
											<goal>xpp3-writer-reflect</goal>
										</goals>
									</pluginExecutionFilter>
									<action>
										<ignore />
									</action>
								</pluginExecution>
								<pluginExecution>
									<pluginExecutionFilter>
										<groupId>org.eclipse.sisu</groupId>
										<artifactId>sisu-maven-plugin</artifactId>
										<versionRange>[0.3.4,)</versionRange>
										<goals>
											<goal>test-index</goal>
											<goal>main-index</goal>
										</goals>
									</pluginExecutionFilter>
									<action>
										<ignore />
									</action>
								</pluginExecution>
								<pluginExecution>
									<pluginExecutionFilter>
										<groupId>
											com.googlecode.maven-download-plugin
										</groupId>
										<artifactId>download-maven-plugin</artifactId>
										<versionRange>[1.4.0,)</versionRange>
										<goals>
											<goal>wget</goal>
										</goals>
									</pluginExecutionFilter>
									<action>
										<ignore />
									</action>
								</pluginExecution>

								<pluginExecution>
									<pluginExecutionFilter>
										<groupId>org.apache.maven.plugins</groupId>
										<artifactId>maven-toolchains-plugin</artifactId>
										<versionRange>[3.0.0,)</versionRange>
										<goals>
											<goal>toolchain</goal>
										</goals>
									</pluginExecutionFilter>
									<action>
										<ignore />
									</action>
								</pluginExecution>
							</pluginExecutions>
						</lifecycleMappingMetadata>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-invoker-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>${maven.download.plugin.groupId}</groupId>
				<artifactId>download-maven-plugin</artifactId>
				<executions>
					<execution>
						<id>getboundary</id>
						<phase>validate</phase>
						<goals>
							<goal>wget</goal>
						</goals>
						<configuration>
							<skip>${hashicorp.boundary.download.skip}</skip>
							<unpack>true</unpack>
							<url>${hashicorp.boundary.url}</url>
							<sha512>${hashicorp.boundary.download.sha512}</sha512>
						</configuration>
					</execution>
					<execution>
						<id>getconsul</id>
						<phase>validate</phase>
						<goals>
							<goal>wget</goal>
						</goals>
						<configuration>
							<skip>${hashicorp.consul.download.skip}</skip>
							<unpack>true</unpack>
							<url>${hashicorp.consul.url}</url>
							<sha512>${hashicorp.consul.download.sha512}</sha512>
						</configuration>
					</execution>
					<execution>
						<id>getnomad</id>
						<phase>validate</phase>
						<goals>
							<goal>wget</goal>
						</goals>
						<configuration>
							<skip>${hashicorp.nomad.download.skip}</skip>
							<unpack>true</unpack>
							<url>${hashicorp.nomad.url}</url>
							<sha512>${hashicorp.nomad.download.sha512}</sha512>
						</configuration>
					</execution>
					<execution>
						<id>getpacker</id>
						<phase>validate</phase>
						<goals>
							<goal>wget</goal>
						</goals>
						<configuration>
							<skip>${hashicorp.packer.download.skip}</skip>
							<unpack>true</unpack>
							<url>${hashicorp.packer.url}</url>
							<sha512>${hashicorp.packer.download.sha512}</sha512>
						</configuration>
					</execution>
					<execution>
						<id>getsentinel</id>
						<phase>validate</phase>
						<goals>
							<goal>wget</goal>
						</goals>
						<configuration>
							<skip>${hashicorp.sentinel.download.skip}</skip>
							<unpack>true</unpack>
							<url>${hashicorp.sentinel.url}</url>
							<sha512>${hashicorp.sentinel.download.sha512}</sha512>
						</configuration>
					</execution>
					<execution>
						<id>getterraform</id>
						<phase>validate</phase>
						<goals>
							<goal>wget</goal>
						</goals>
						<configuration>
							<skip>${hashicorp.terraform.download.skip}</skip>
							<unpack>true</unpack>
							<url>${hashicorp.terraform.url}</url>
							<sha512>${hashicorp.terraform.download.sha512}</sha512>
						</configuration>
					</execution>
					<execution>
						<id>getvault</id>
						<phase>validate</phase>
						<goals>
							<goal>wget</goal>
						</goals>
						<configuration>
							<skip>${hashicorp.vault.download.skip}</skip>
							<unpack>true</unpack>
							<url>${hashicorp.vault.url}</url>
							<sha512>${hashicorp.vault.download.sha512}</sha512>
						</configuration>
					</execution>
					<execution>
						<id>getvagrant</id>
						<phase>validate</phase>
						<goals>
							<goal>wget</goal>
						</goals>
						<configuration>
							<skip>${hashicorp.vagrant.download.skip}</skip>
							<unpack>true</unpack>
							<url>${hashicorp.vagrant.url}</url>
							<sha512>${hashicorp.vagrant.download.sha512}</sha512>
						</configuration>
					</execution>
					<execution>
						<id>getwaypoint</id>
						<phase>validate</phase>
						<goals>
							<goal>wget</goal>
						</goals>
						<configuration>
							<skip>${hashicorp.waypoint.download.skip}</skip>
							<unpack>true</unpack>
							<url>${hashicorp.waypoint.url}</url>
							<sha512>${hashicorp.waypoint.download.sha512}</sha512>
						</configuration>
					</execution>
				</executions>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-enforcer-plugin</artifactId>
				<executions>
					<execution>
						<id>default</id>
						<goals>
							<goal>enforce</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-toolchains-plugin</artifactId>
				<executions>
					<execution>
						<goals>
							<goal>toolchain</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.sonatype.plugins</groupId>
				<artifactId>nexus-staging-maven-plugin</artifactId>
				<extensions>true</extensions>
			</plugin>
		</plugins>
		<extensions>
			<extension>
				<groupId>com.github.seahen</groupId>
				<artifactId>maven-s3-wagon</artifactId>
				<version>${maven.s3.wagon.version}</version>
			</extension>
			<extension>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<version>${felix.bundle.plugin.version}</version>
			</extension>
			<extension>
				<groupId>org.apache.maven.wagon</groupId>
				<artifactId>wagon-ssh</artifactId>
				<version>${maven.wagon.version}</version>
			</extension>
			<extension>
				<groupId>kr.motd.maven</groupId>
				<artifactId>os-maven-plugin</artifactId>
				<version>${kr.motd.maven.plugin.version}</version>
			</extension>
		</extensions>
	</build>

	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-changelog-plugin</artifactId>
				<version>${maven.changelog.plugin.version}</version>
			</plugin>
		</plugins>
	</reporting>

	<profiles>
		<profile>
			<id>run-its</id>
			<activation>
				<activeByDefault>true</activeByDefault>
			</activation>
			<properties>
				<skip.invoker>false</skip.invoker>
			</properties>
			<build>
				<plugins>
					<!--
        <plugin>
          <artifactId>maven-install-plugin</artifactId>
          <version>${maven.install.plugin.version}</version>

        </plugin>
        -->
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-invoker-plugin</artifactId>
						<executions>
							<execution>
								<id>invoker-run</id>
								<goals>
									<goal>install</goal>
									<goal>run</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
		<profile>
			<id>darwin-hashicorp</id>
			<activation>
				<os>
					<family>mac</family>
					<name>mac os x</name>
				</os>
			</activation>
			<properties>
				<hashicorp.os>darwin</hashicorp.os>
				<hashicorp.boundary.download.sha512>
					${hashicorp.boundary.sha512.darwin}</hashicorp.boundary.download.sha512>
				<hashicorp.consul.download.sha512>
					${hashicorp.consul.sha512.darwin}</hashicorp.consul.download.sha512>
				<hashicorp.nomad.download.sha512>
					${hashicorp.nomad.sha512.darwin}</hashicorp.nomad.download.sha512>
				<hashicorp.packer.download.sha512>
					${hashicorp.packer.sha512.darwin}</hashicorp.packer.download.sha512>
				<hashicorp.sentinel.download.sha512>
					${hashicorp.sentinel.sha512.darwin}</hashicorp.sentinel.download.sha512>
				<hashicorp.terraform.download.sha512>
					${hashicorp.terraform.sha512.darwin}</hashicorp.terraform.download.sha512>
				<hashicorp.vault.download.sha512>
					${hashicorp.vault.sha512.darwin}</hashicorp.vault.download.sha512>
				<hashicorp.waypoint.download.sha512>
					${hashicorp.waypoint.sha512.darwin}</hashicorp.waypoint.download.sha512>
			</properties>
		</profile>
		<profile>
			<id>linux-hashicorp</id>
			<activation>
				<os>
					<family>unix</family>
					<name>linux</name>
				</os>
			</activation>
			<properties>
				<hashicorp.os>linux</hashicorp.os>
				<hashicorp.boundary.download.sha512>
					${hashicorp.boundary.sha512.linux}</hashicorp.boundary.download.sha512>
				<hashicorp.consul.download.sha512>
					${hashicorp.consul.sha512.linux}</hashicorp.consul.download.sha512>
				<hashicorp.nomad.download.sha512>${hashicorp.nomad.sha512.linux}</hashicorp.nomad.download.sha512>
				<hashicorp.packer.download.sha512>
					${hashicorp.packer.sha512.linux}</hashicorp.packer.download.sha512>
				<hashicorp.sentinel.download.sha512>
					${hashicorp.sentinel.sha512.linux}</hashicorp.sentinel.download.sha512>
				<hashicorp.terraform.download.sha512>
					${hashicorp.terraform.sha512.linux}</hashicorp.terraform.download.sha512>
				<hashicorp.vault.download.sha512>${hashicorp.vault.sha512.linux}</hashicorp.vault.download.sha512>
				<hashicorp.vagrant.download.sha512>
					${hashicorp.vagrant.sha512.linux}</hashicorp.vagrant.download.sha512>
				<hashicorp.waypoint.download.sha512>
					${hashicorp.waypoint.sha512.linux}</hashicorp.waypoint.download.sha512>
			</properties>
		</profile>
		<profile>
			<id>windows-hashicorp</id>
			<activation>
				<os>
					<family>windows</family>
				</os>
			</activation>
			<properties>
				<hashicorp.os>windows</hashicorp.os>
				<hashicorp.boundary.download.sha512>
					${hashicorp.boundary.sha512.windows}</hashicorp.boundary.download.sha512>
				<hashicorp.consul.download.sha512>
					${hashicorp.consul.sha512.windows}</hashicorp.consul.download.sha512>
				<hashicorp.nomad.download.sha512>
					${hashicorp.nomad.sha512.windows}</hashicorp.nomad.download.sha512>
				<hashicorp.packer.download.sha512>
					${hashicorp.packer.sha512.windows}</hashicorp.packer.download.sha512>
				<hashicorp.sentinel.download.sha512>
					${hashicorp.sentinel.sha512.windows}</hashicorp.sentinel.download.sha512>
				<hashicorp.terraform.download.sha512>
					${hashicorp.terraform.sha512.windows}</hashicorp.terraform.download.sha512>
				<hashicorp.vault.download.sha512>
					${hashicorp.vault.sha512.windows}</hashicorp.vault.download.sha512>
				<hashicorp.waypoint.download.sha512>
					${hashicorp.waypoint.sha512.windows}</hashicorp.waypoint.download.sha512>
			</properties>
		</profile>
		<profile>
			<id>release</id>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-source-plugin</artifactId>
						<executions>
							<execution>
								<id>attach-sources</id>
								<goals>
									<goal>jar-no-fork</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
					<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>
					<plugin>
						<groupId>org.codehaus.mojo</groupId>
						<artifactId>tidy-maven-plugin</artifactId>
					</plugin>
				</plugins>
			</build>
		</profile>
		<profile>
			<id>pdf</id>
			<reporting>
				<plugins>
					<plugin>
						<artifactId>maven-project-info-reports-plugin</artifactId>
						<version>${maven.project.info.plugin.version}</version>
						<reportSets>
							<reportSet>
								<reports>
									<report>cim</report>
									<!-- take too long time
                  <report>dependencies</report> -->
									<report>dependency-convergence</report>
									<report>dependency-management</report>
									<!-- already present <report>index</report> -->
									<report>issue-tracking</report>
									<report>license</report>
									<report>mailing-list</report>
									<report>plugin-management</report>
									<report>plugins</report>
									<report>project-team</report>
									<report>scm</report>
									<report>summary</report>
								</reports>
							</reportSet>
						</reportSets>
					</plugin>
				</plugins>
			</reporting>

			<build>
				<defaultGoal>pdf:pdf</defaultGoal>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-pdf-plugin</artifactId>
						<version>${maven.pdf.plugin.version}</version>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
</project>
